如果你的ASP.NET程序学得不错了,想用ASP.NET来发送邮件,在网上有好多文章,本站不管网上说是如何实现的,下面整理两种.NET发送邮件的方法给你参考一下,很简单的哦。
第一种:
1、配置文件(Web.config) + 少量C#代码
在 configuration 节点下添加
<system.net> <mailSettings> <smtp from="baidu@163.com"> <network host="smtp.163.com" password="baidu" port="25" userName="baidu" defaultCredentials="false"/> </smtp> </mailSettings> </system.net>
/// <summary>
/// 发送邮件/// </summary>private void SendMail(){ System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage(); message.From = new System.Net.Mail.MailAddress("baidu@163.com");//发送人邮箱地址,与smtp节点中的from值一致 message.To.Add(new System.Net.Mail.MailAddress("taobao@163.com"));//接收人邮箱地址 message.Subject = "hello"; message.Body = "<b>taobao</b>"; message.IsBodyHtml = true; System.Net.Mail.SmtpClient smtpclient = new System.Net.Mail.SmtpClient(); smtpclient.Send(message);}
好,介绍完第一种发送邮件的方法,下面看第二种。
/// <summary>
/// 发送邮件/// </summary>private void SendMail(){ System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage(); message.From = new System.Net.Mail.MailAddress("baidu@163.com");//发送人邮箱地址,与smtp节点中的from值一致 message.To.Add(new System.Net.Mail.MailAddress("taobao@163.com"));//接收人邮箱地址 message.Subject = "hello"; message.Body = "<b>taobao</b>"; message.IsBodyHtml = true; System.Net.Mail.SmtpClient smtpclient = new System.Net.Mail.SmtpClient("smtp.163.com", 25); smtpclient.Credentials = new System.Net.NetworkCredential("baidu", "baidu");//参数分别是邮箱用户名和密码 smtpclient.Send(message);}
怎样,上面两种发送邮件的方法都很简单吧。
相关视频
相关阅读 ie6下面asp.net mvc3 部署应用程序在asp.net mvc中实现右键菜单和简单的分页教程ASP.NET中MVC框架模式方法如何实现分享ASP.NET 2.0 中保护机密数据ASP.NET配置文件Web.configASP.NET 2.0 AJAX中Webservice调用方法ASP.NET 的安全认证实现ASP.NET生成随机密码功能
热门文章 没有查询到任何记录。
最新文章
什么是.NET中的TDD?ASP.NET AJAX入门简介
WebMatrix入门教程VC++2008中如何调用GetOpenFileName打开文件PlaySound函数在VC++6.0中如何播放音乐及声请问VC++回调函数怎么用
人气排行 嵌入式实时操作系统VxWorks入门教程ArrayList 与 string、string[] 的转换C#遍历整个文件夹及子目录的文件代码WebMatrix入门教程asp.net判断文件或文件夹是否存在c#判断数据NULL值的方法vc++6.0怎么写Windows简单窗口代码.net解决数据导出excel时的格式问题
查看所有0条评论>>