welcome to Qijie's Blog 薛其杰
摘要: using System.Net.Mail; public class MailHelp { public static void Send(string subject, string body) { MailMessage message = new MailMessage(); SmtpClient client = new SmtpClient(); client.Port = 25; client.Host = "smtphost.mycompany.com... 阅读全文
posted @ 2013-10-23 10:15 零点零一 阅读(344) 评论(0) 推荐(0)