更改电子邮件中的字体

时间:2014-05-01 18:52:06

标签: c# asp.net .net vb.net html-email

发送格式化的电子邮件需要一些帮助。以下是我的代码。

我希望“评论:”字符串以粗体显示。如何在vb.net或C#

中执行此操作
oBLL.Comments = "Comments:" + txtComments.Text

mailBody.Append(oBLL.Comments)

1 个答案:

答案 0 :(得分:4)

您需要做的是使用HTML语法构建您的电子邮件正文,并在发送之前将MailMessage.IsBodyHtml属性设置为true

oBLL.Comments = "<strong>Comments:</strong>" + txtComments.Text;

mailBody.Append(oBLL.Comments);

// ...

// assuming mail client and message instances already exists
mailMessage.IsBodyHtml = true;
mailClient.Send(mailMessage);