下面的邮件目标是我目前拥有的。我想在电子邮件正文中将文本“日期”和“调用类”加粗。最好的方法是什么?谢谢。
<target name="gmail" type="Mail"
smtpServer="smtp.gmail.com"
smtpPort="587"
smtpAuthentication="Basic"
smtpUsername="xxxxxx"
smtpPassword="xxxxxx"
from="xxxxxx"
to="xxxxxx"
enableSsl="true"
html ="true"
replaceNewlineWithBrTagInHtml ="true"
subject="Example - ERROR - ${exception:format=Message}"
body="Date:${longdate}${newline}Calling Class: ${callsite}"/>
我正在使用 NLog 版本:4.5.11 和 NLog.MailKit 版本 3.0.0。
这对我有用:
body="Date:<strong>${longdate}</strong>${newline}
Calling Class: <strong>${callsite}</strong>"
请注意,我转义了小于和大于字符。
我是一名优秀的程序员,十分优秀!