本文共 1455 字,大约阅读时间需要 4 分钟。
MailMessage msg = new MailMessage(); msg.From = new MailAddress("[email]address@domain.com[/email]", "Person's Name"); msg.To.Add(new MailAddress("[email]destination@domain.com[/email]", "Addressee's Name"); msg.To.Add(new MailAddress("[email]destination2@domain.com[/email]", "Addressee 2's Name"); msg.Subject = "Message Subject"; msg.Body = "Mail body content"; msg.IsBodyHtml = true; msg.Priority = MailPriority.High; SmtpClient c = new SmtpClient("mailserver.domain.com"); c.Send(msg); |
"Person's Name" <[email]destination@domain.com[/email]> |
所以,我还会继续探讨这个问题,如果实在找不到一个好的补救办法,那么我只要回到以前的System.Web.Mail以更有效了解决上面的警告问题。
本文转自朱先忠老师51CTO博客,原文链接:http://blog.51cto.com/zhuxianzhong/59768 ,如需转载请自行联系原作者