C#_發送郵件

來源:互聯網
上載者:User

標籤:

你要用QQ郵件發郵件就配置郵件伺服器為QQ郵箱的郵件伺服器mail.qq.com.
然後FromAddress那裡配置成你的郵件地址,
objSmtpClient.Credentials 需要你的郵箱和密碼。
方法 SendMail(string mailAddress, string mailTitle, string mailContent)
需要參數mailAddress為你要發送的郵箱地址,mailTitle為郵件主題,mailContent為郵件內容。
還需要引用:using System.Net.Mail;

public static void SendMail(string mailAddress, string mailTitle, string mailContent)
{
MailMessage objMailMessage = new MailMessage();
string fromAddress = ConfigurationManager.AppSettings["FromAddress"];//你在web.config中配置的寄件者地址,就是你的郵箱地址。
string mailHost = ConfigurationManager.AppSettings["MailHost"];//郵件伺服器,如mail.qq.com

objMailMessage.From = new MailAddress(fromAddress);//發送方地址
objMailMessage.To.Add(new MailAddress(mailAddress));//收信人地址
objMailMessage.BodyEncoding = System.Text.Encoding.UTF8;//郵件編碼
objMailMessage.Subject = mailTitle;//郵件標題
objMailMessage.Body = mailContent;//郵件內容
objMailMessage.IsBodyHtml = true;//郵件內文是否為html格式

SmtpClient objSmtpClient = new SmtpClient();
objSmtpClient.Host = mailHost;//郵件伺服器地址
objSmtpClient.DeliveryMethod = SmtpDeliveryMethod.Network;//通過網路發送到stmp郵件伺服器
objSmtpClient.Credentials = new System.Net.NetworkCredential();//發送方的郵件地址,密碼
//objSmtpClient.EnableSsl = true;//SMTP 伺服器要求安全連線需要設定此屬性

try
{
objSmtpClient.Send(objMailMessage);
}
catch (Exception ex)
{
LogHelper.WriteLog(LogFile.Error, ex.ToString());//記錄錯誤記錄檔
}
}

C#_發送郵件

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.