发送带有HTML文件的电子邮件(C#)

前端之家收集整理的这篇文章主要介绍了发送带有HTML文件的电子邮件(C#)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用HTML文件设置MailMessage的正文?

谢谢

解决方法

只需将 MailMessage.BodyFormat属性设置为 MailFormat.Html,然后将您的html文件内容转储到 MailMessage.Body属性
using (StreamReader reader = File.OpenText(htmlFilePath)) // Path to your 
{                                                         // HTML file
    MailMessage myMail = new MailMessage();
    myMail.From = "from@microsoft.com";
    myMail.To = "to@microsoft.com";
    myMail.Subject = "HTML Message";
    myMail.BodyFormat = MailFormat.Html;

    myMail.Body = reader.ReadToEnd();  // Load the content from your file...
    //...
}
原文链接:https://www.f2er.com/html/232714.html

猜你在找的HTML相关文章