C#中使用System.Web.Mail.MailMessage类无法CC多人的问题_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C#中使用System.Web.Mail.MailMessage类无法CC多人的问题

C#中使用System.Web.Mail.MailMessage类无法CC多人的问题

 2015/4/30 16:08:29  RunforLove  程序员俱乐部  我要评论(0)
  • 摘要:从.NET2.0开始,引入了一个新的类,System.Net.Mail.MailMessage。该类用来取代.NET1.1时代System.Web.Mail.MailMessage类。System.Net.Mail.MailMessage类用于指定一个邮件,另外一个类System.Net.Mail.SmtpClient则用来设置SMTP,然后发送邮件。由于目前SMTP都需要进行身份验证,有的还需要SSL(比如GMail),所以设置的属性稍微多一些。代码片断如下:usingSystem.Net
  • 标签:C# system Web 使用 问题

从.NET 2.0 开始,引入了一个新的类,System.Net.Mail.MailMessage。该类用来取代 .NET 1.1 时代System.Web.Mail.MailMessage类。System.Net.Mail.MailMessage 类用于指定一个邮件,另外一个类 System.Net.Mail.SmtpClient 则用来设置 SMTP,然后发送邮件。由于目前 SMTP 都需要进行身份验证,有的还需要 SSL(比如GMail),所以设置的属性稍微多一些。代码片断如下:

 

using System.Net.Mail;
MailMessage mailMsg = new MailMessage(); 
mailMsg.From = new MailAddress("你的email地址"); 
mailMsg.To.Add("接收人1的email地址"); 
mailMsg.To.Add("接收人2的email地址"); 
mailMsg.Subject = "邮件主题"; 
mailMsg.Body = "邮件主体内容"; 
mailMsg.BodyEncoding = Encoding.UTF8; 
mailMsg.IsBodyHtml = false; 
mailMsg.Priority = MailPriority.High; 
SmtpClient smtp = new SmtpClient(); 
// 提供身份验证的用户名和密码 
// 网易邮件用户可能为:username password 
// Gmail 用户可能为:username@gmail.com password 
smtp.Credentials = new NetworkCredential("用户名", "密码");
smtp.Port = 25; // Gmail 使用 465 和 587 端口 
smtp.Host = "SMTP 服务器地址"; // 如 smtp.163.com, smtp.gmail.com smtp.EnableSsl = false; // 如果使用GMail,则需要设置为true smtp.SendCompleted += new SendCompletedEventHandler(SendMailCompleted); 
try {     
smtp.SendAsync(mailMsg, mailMsg); 
} catch (SmtpException ex) {     
Console.WriteLine(ex.ToString()); 
} 

... 

void SendMailCompleted(object sender, AsyncCompletedEventArgs e) {     MailMessage mailMsg = (MailMessage)e.UserState;     
string subject = mailMsg.Subject;     
if (e.Cancelled) // 邮件被取消     
{ 
Console.WriteLine(subject + " 被取消。");     
}    
 if (e.Error != null)     
{         
Console.WriteLine("错误" + e.Error.ToString());     
}     else     
{         
Console.WriteLine("发送完成。");     
} 
}

 

上一篇: 周鸿祎手机屏幕照片流出 疑似无边框大屏 下一篇: 没有下一篇了!
发表评论
用户名: 匿名