用于邮件消息正文的HTML到字符串

时间:2014-04-17 15:05:11

标签: html asp.net css

我正在asp.net中开发一个页面,用于向用户发送邮件。 我需要将html消息体转换为字符串消息,包括添加到它的css样式。 如何将html格式转换为字符串格式,以便我将其作为

MailMessage mail=new MailMessage(xxx@example.com,xxxTo@example.com);
mail.Body=strHTMLBody; //the HTML Converted string
mail.IsBodyHtml = true;

先谢谢。

1 个答案:

答案 0 :(得分:0)

如果我了解你,请将mail.IsBodyHtml = true;替换为mail.IsBodyHtml = false;