0

我想设置通过从不同对象和参数收集数据来生成电子邮件的电子邮件文本的颜色。我已经对其进行了编码,但无法为每个参数的上下文设置单独的颜色

我的代码给出:

SmtpClient emailClient = new SmtpClient();

            MailMessage emailMessage = new MailMessage();
            emailMessage.IsBodyHtml = true;


                sbEmailBody.AppendLine("[" + **test.GetType().Name** + "]");

如何设置test.GetType().Name参数的颜色?

4

1 回答 1

1

像这样附加html文本

<span style="color:red">My Text"</span>

就像你的例子

foreach (ITest test in tests)
{
  sbEmailBody.AppendLine("<span style='color:red'>[" + **test.GetType().Name** + "]</span>");
}
于 2013-09-18T07:34:22.763 回答