我需要在电子邮件正文中显示以下内容。单词"命令"和 "调度"需要用斜体字表示。
VB中的代码:
tlBody = tlBody.Replace("DBCOLUMN1", ds.Tables(1).Rows(1)(0).ToString)
tlBody = tlBody.Replace(“001value”, “ All ““orders” “must be within the
“”dispatch”” date.”)
从数据库表中获取DBCOLUMN1,该表具有" Action"作为价值
期望的输出
动作:
所有“订单”必须在“发货”日期内。
当前输出
动作:
所有“订单”必须在“发货”日期内。
答案 0 :(得分:0)
使用System.Net.Mail.MailMessage课程发送电子邮件,您可以将正文格式化为Html
MailMessage.IsBodyHtml = True
然后,身体可以包含斜体标签
tlBody = tlBody.Replace("001value", " All <i>orders</i> must be within the <i>dispatch</i> date.")
这是一个带有粗体标签的完整示例(以相同的方式工作):http://www.systemnetmail.com/faq/3.1.2.aspx