使用需要验证用户的smtp服务器发送邮件

来源:互联网 发布:手机淘宝联盟如何返利 编辑:程序博客网 时间:2024/05/27 19:27

使用需要验证用户的smtp服务器发送邮件
偶尔看到,觉得对某些人还是有用,顺手转了过来....

using System.Web.Mail;
private void Page_Load(object sender, System.EventArgs e)
{
 MailMessage mail = new MailMessage();
 mail.To = "me@mycompany.com";
 mail.From = "you@yourcompany.com";
 mail.Subject = "this is a test email.";
 mail.Body = "Some text goes here";
 mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); //basic authentication
 mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "my_username_here"); //set your username here
 mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "super_secret"); //set your password here

 SmtpMail.SmtpServer = "mail.mycompany.com";  //your real server goes here
 SmtpMail.Send( mail );
}

原创粉丝点击