发送格式化的电子邮件需要一些帮助。以下是我的代码。
我希望“评论:”字符串以粗体显示。如何在vb.net或C#
中执行此操作oBLL.Comments = "Comments:" + txtComments.Text
mailBody.Append(oBLL.Comments)
答案 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);