【发布时间】:2016-04-27 12:58:27
【问题描述】:
有些人建议最好将 html 格式和纯文本格式的电子邮件一起发送到同一电子邮件正文中,如下链接所述。 https://litmus.com/blog/reach-more-people-and-improve-your-spam-score-why-multi-part-email-is-important
您可以在下面看到四个代码选项。
.BodyFormat = Outlook.OlBodyFormat.olFormatHTML
.BodyFormat = Outlook.OlBodyFormat.olFormatPlain
.BodyFormat = Outlook.OlBodyFormat.olFormatRichText
.BodyFormat = Outlook.OlBodyFormat.olFormatUnspecified
您可以选择一个选项,如下图所示。 http://www.rocketseed.com/wp-content/uploads/2013/07/Outlook-2010-HTML.jpg
即使您的代码必须包含一个选项,如何发送混合格式的电子邮件?
为此我需要 vb.net 代码。
【问题讨论】: