在.NET framework的强大支持下,我们可以很容易的使用电子邮件发送这个功能,此功能实现的前提是你的邮箱必须开通Smtp功能
通常在一封邮件中,存在以下内容:
From: 发送方地址
To: 接受方地址
BodyFormat: 正文内容类型,我们这里采用HTML格式
BodyEncoding: 正文内容编码,这里采用的是默认编码: DEFAULT
Subject: 信件的主题,即标题
Body: 信件的内容,即正文
SmtpServer: SMTP 服务器的地址,用来发送电子邮件
下面的代码片断说明了如何使用该功能
using System.web.Mail;
...
MailMessage msg = new MailMessage();
//发送方地址
msg.From = "liucsoft@163.com";
//接收方地址
msg.To = "liucsoft@163.com";
//正文内容类型
msg.BodyFormat = MailFormat.Html;
//正文内容编码
msg.BodyEncoding = System.Text.Encoding.Default;
//主题
msg.Subject = "LIUCSOFT向您问好";
//内容
msg.Body = "<html><head><META content=zh-cn http-equiv=Content-Language><meta http-equiv='Content-Type' content='text/html; charset=gb2312'></head><body>这是一封测试邮件,不必回复</body></html>";
//设置为需要用户验证
msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");
//设置验证用户名
msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "liucsoft");
//设置验证密码
msg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "123456");
//邮件服务器地址(如smtp.163.com)
SmtpMail.SmtpServer = "smtp.163.com";
//发送
SmtpMail.Send(msg);
...