之前自己從來沒有做過發送郵箱的功能,前段時間項目需要,在找了很多文章之後,終於實現了。
之後有整理了一下,寫了一個類。直接給類傳遞資訊,就可以發送了。
這裡還需要說明的是,發送郵箱需要開通POP3/SMTP服務,否則QQ郵箱,網易郵箱等會報錯。接收的郵箱就不用開通啦,開通方法百度一下就知道啦。
public static class EmailHelper { /// <summary> /// 發送郵件 /// </summary> /// <param name="subject">郵件主題</param> /// <param name="msg">郵件內容</param> /// <param name="filePath">附件地址,如果不添加附件傳null或""</param> /// <param name="senderEmail">發送人郵箱地址</param> /// <param name="senderPwd">發送人郵箱密碼</param> /// <param name="recipientEmail">接收人郵箱</param> public static void SendMail(string subject, string msg, string filePath, string senderEmail, string senderPwd, params string[] recipientEmail) { if (!CheckIsNotEmptyOrNull(subject, msg, senderEmail, senderPwd) || recipientEmail == null || recipientEmail.Length == 0) { throw new Exception("輸入資訊無效"); } try { string[] sendFromUser = senderEmail.Split('@'); //構造一個Email的Message對象 MailMessage message = new MailMessage(); //確定smtp伺服器位址。執行個體化一個Smtp用戶端 System.Net.Mail.SmtpClient client = new System.Net.Mail.SmtpClient("smtp." + sendFromUser[1]); //構造寄件者地址對象 message.From = new MailAddress(senderEmail, sendFromUser[0], Encoding.UTF8); //構造收件者地址對象 foreach (string userName in recipientEmail) { message.To.Add(new MailAddress(userName, userName.Split('@')[0], Encoding.UTF8)); } if (!string.IsNullOrEmpty(filePath)) { Attachment attach = new Attachment(filePath); //得到檔案的資訊 ContentDisposition disposition = attach.ContentDisposition; disposition.CreationDate = System.IO.File.GetCreationTime(filePath); disposition.ModificationDate = System.IO.File.GetLastWriteTime(filePath); disposition.ReadDate = System.IO.File.GetLastAccessTime(filePath); //向郵件添加附件 message.Attachments.Add(attach); } //添加郵件主題和內容 message.Subject = subject; message.SubjectEncoding = Encoding.UTF8; message.Body = msg; message.BodyEncoding = Encoding.UTF8; //設定郵件的資訊 client.DeliveryMethod = SmtpDeliveryMethod.Network; message.BodyEncoding = System.Text.Encoding.UTF8; message.IsBodyHtml = false; //如果伺服器支援安全連線,則將安全連線設為true。 //gmail,qq支援,163不支援 switch (sendFromUser[1]) { case "gmail.com": case "qq.com": client.EnableSsl = true; break; default: client.EnableSsl = false; break; } //設定使用者名稱和密碼。 client.UseDefaultCredentials = false; //使用者登陸資訊 NetworkCredential myCredentials = new NetworkCredential(senderEmail, senderPwd); client.Credentials = myCredentials; //發送郵件 client.Send(message); } catch (Exception ex) { throw (ex); } } /// <summary> /// 驗證所有傳入字串不可為空或null /// </summary> /// <param name="ps">參數列表</param> /// <returns>都不為空白或null返回true,否則返回false</returns> public static bool CheckIsNotEmptyOrNull(params string[] ps) { if (ps != null) { foreach (string item in ps) { if (string.IsNullOrEmpty(item)) return false; } return true; } return false; } }
直接調用方法,傳遞需要發送的資訊,就可以發送郵箱了。
以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援topic.alibabacloud.com。