我有一个电子邮件模板在outlook。我可以保存它的HTML文件,我想使用这个HTML正文在我的代码,所以我可以自动化的电子邮件发送。
有没有办法在这里插入导出的html文件?
或者在这里粘贴html代码的格式要求是什么?
你能告诉我该怎么办吗?先谢谢你。
outlook = win32.Dispatch('outlook.application')
Email = outlook.CreateItem(0)
Email.To = emailaddress
Email.Subject = subject
Email.HTMLBody = ### I would like to insert the exported HTML body of the outlook massage here.**
attachment = 'C:\\attachment.csv'
Email.Attachments.Add(attachment)
Email.Send()
1条答案
按热度按时间66bbxpm51#
将HTML文件读入变量,并使用其值设置
HTMLBody
属性。