频道直达 - 专题 - 新闻 - 技巧 - 组网 - 开发 - 安全 - web编程 - 图像 - 操作系统 - 数据库 - 教育 - 旅游 - 健康 - 时尚 - 驱动 - 软件 - 游戏 - 多媒体 - ERP - 讨论组

.net Framework 2.0下发送邮件的方式

来源:中国IT实验室 作者:佚名 出处:巧巧读书 2007-12-27 进入讨论组

在.net Framework 1.x我们需要使用System.Web.Mail命名空间下的类来进行发送邮件,但是功能比较弱,比如你的邮件服务器需要验证才能发送邮件,在.net 1.1中,需要用下面的代码来做额外配置

mail.fields.add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); 
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", 
"my_username_here"); 
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "super_secret");

.net 1.x下发送邮件的方式这里不作介绍,.net Framework 2.0 下,在System.Net.Mail命名空间中提供了对邮件操作的支持,他的功能更强大。比如你的邮件服务器需要验证才能发送邮件,代码就只需简单写成如下:

   public static void SendSMTPEMail(string strSmtpServer, string strFrom, 
      string strFromPass, string strto, string strSubject, string strBody) 
……{
System.Net.Mail.SmtpClient client = new SmtpClient(strSmtpServer);
client.UseDefaultCredentials = false;
client.Credentials = new System.Net.NetworkCredential(strFrom, strFromPass);
client.DeliveryMethod = SmtpDeliveryMethod.Network;
System.Net.Mail.MailMessage message = new MailMessage(strFrom, strto, strSubject,
      strBody); 
message.BodyEncoding = System.Text.Encoding.UTF8;
message.IsBodyHtml = true;
client.Send(message);
}  

我们可以通过修改UseDefaultCredentials Credentials DeliveryMethod等属性,方便的支持各种情况下发送邮件的方式。

   巧巧读书:http://www.qqread.com/aspdotnet/u389318.html

更多文章 更多内容请看.NET Framework新手入门.NET移动与嵌入式技术.NET开发手册专题,或进入讨论组讨论。
收藏此文】【 】【打印】【关闭
相关图文阅读
频道图文推荐
健 康 咨 询
时 尚 咨 询
巧巧读书宗旨
相关专题
讨论组问题推荐
站内各频道最新更新文档
站内最新制作专题
热门关键字导读
Photoshop教 程照片处理 照片制作 PS快捷键 抠图
计 算 机 故 障XP系统修复
艺 术 与 设 计设计 流媒体 设计欣赏 边框
计 算 机 安 全ARP
站内频道文章精选
巧巧电脑频道编辑信箱  告诉我们您想看的专题或文章