/DotNet.Framework.Common/MailSender.cs

# · C# · 211 lines · 165 code · 25 blank · 21 comment · 19 complexity · 67285c72af01a0a778a7be8412d38d8b MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Xml;
  5. using System.Configuration;
  6. using System.Web;
  7. using System.IO;
  8. using System.Net;
  9. using System.Net.Mail;
  10. namespace DotNet.Framework.Common
  11. {
  12. /// <summary>
  13. /// 邮件发送
  14. /// </summary>
  15. public class MailSender
  16. {
  17. public static void Send(string tomail, string bccmail, string subject, string body, params string[] files)
  18. {
  19. Send(SmtpConfig.Create().SmtpSetting.Sender, tomail, bccmail, subject, body, true, Encoding.Default, true, files);
  20. }
  21. public static void Send(string frommail, string tomail, string bccmail, string subject,
  22. string body, bool isBodyHtml, Encoding encoding, bool isAuthentication, params string[] files)
  23. {
  24. Send(SmtpConfig.Create().SmtpSetting.Server, SmtpConfig.Create().SmtpSetting.UserName, SmtpConfig.Create().SmtpSetting.Password, frommail,
  25. tomail, "", bccmail, subject, body, isBodyHtml, encoding, isAuthentication, files);
  26. }
  27. /// <summary>
  28. ///
  29. /// </summary>
  30. /// <param name="server"></param>
  31. /// <param name="username"></param>
  32. /// <param name="password"></param>
  33. /// <param name="frommail"></param>
  34. /// <param name="tomail"></param>
  35. /// <param name="ccmail"></param>
  36. /// <param name="bccmail"></param>
  37. /// <param name="subject"></param>
  38. /// <param name="body"></param>
  39. /// <param name="isBodyHtml"></param>
  40. /// <param name="encoding"></param>
  41. /// <param name="isAuthentication"></param>
  42. /// <param name="files"></param>
  43. public static void Send(string server, string username, string password, string frommail, string tomail, string ccmail, string bccmail, string subject,
  44. string body, bool isBodyHtml, Encoding encoding, bool isAuthentication, params string[] files)
  45. {
  46. SmtpClient smtpClient = new SmtpClient(server);
  47. //MailAddress from = new MailAddress("ben@contoso.com", "Ben Miller");
  48. //MailAddress to = new MailAddress("jane@contoso.com", "Jane Clayton");
  49. MailMessage message = new MailMessage(frommail, tomail);
  50. if (bccmail.Length > 1)
  51. {
  52. string[] maillist = Common.Helper.StringHelper.GetStrArray(bccmail);
  53. foreach (string m in maillist)
  54. {
  55. if (m.Trim() != "")
  56. {
  57. MailAddress bcc = new MailAddress(m.Trim());
  58. message.Bcc.Add(bcc);
  59. }
  60. }
  61. }
  62. if (ccmail.Length > 1)
  63. {
  64. string[] maillist = Common.Helper.StringHelper.GetStrArray(ccmail);
  65. foreach (string m in maillist)
  66. {
  67. if (m.Trim() != "")
  68. {
  69. MailAddress cc = new MailAddress(m.Trim());
  70. message.CC.Add(cc);
  71. }
  72. }
  73. }
  74. message.IsBodyHtml = isBodyHtml;
  75. message.SubjectEncoding = encoding;
  76. message.BodyEncoding = encoding;
  77. message.Subject = subject;
  78. message.Body = body;
  79. message.Attachments.Clear();
  80. if (files != null && files.Length != 0)
  81. {
  82. for (int i = 0; i < files.Length; ++i)
  83. {
  84. Attachment attach = new Attachment(files[i]);
  85. message.Attachments.Add(attach);
  86. }
  87. }
  88. if (isAuthentication == true)
  89. {
  90. smtpClient.Credentials = new NetworkCredential(username, password);
  91. }
  92. smtpClient.Send(message);
  93. message.Attachments.Dispose();
  94. }
  95. public static void Send(string recipient, string subject, string body)
  96. {
  97. Send(SmtpConfig.Create().SmtpSetting.Sender, recipient, "", subject, body, true, Encoding.Default, true, null);
  98. }
  99. public static void Send(string Recipient, string Sender, string Subject, string Body)
  100. {
  101. Send(Sender, Recipient, "", Subject, Body, true, Encoding.UTF8, true, null);
  102. }
  103. }
  104. public class SmtpSetting
  105. {
  106. private string _server;
  107. public string Server
  108. {
  109. get { return _server; }
  110. set { _server = value; }
  111. }
  112. private bool _authentication;
  113. public bool Authentication
  114. {
  115. get { return _authentication; }
  116. set { _authentication = value; }
  117. }
  118. private string _username;
  119. public string UserName
  120. {
  121. get { return _username; }
  122. set { _username = value; }
  123. }
  124. private string _sender;
  125. public string Sender
  126. {
  127. get { return _sender; }
  128. set { _sender = value; }
  129. }
  130. private string _password;
  131. public string Password
  132. {
  133. get { return _password; }
  134. set { _password = value; }
  135. }
  136. }
  137. public class SmtpConfig
  138. {
  139. private static SmtpConfig _smtpConfig;
  140. private string ConfigFile
  141. {
  142. get
  143. {
  144. string configPath = ConfigurationManager.AppSettings["SmtpConfigPath"];
  145. if (string.IsNullOrEmpty(configPath) || configPath.Trim().Length == 0)
  146. {
  147. configPath = HttpContext.Current.Request.MapPath("/Config/SmtpSetting.config");
  148. }
  149. else
  150. {
  151. if (!Path.IsPathRooted(configPath))
  152. configPath = HttpContext.Current.Request.MapPath(Path.Combine(configPath, "SmtpSetting.config"));
  153. else
  154. configPath = Path.Combine(configPath, "SmtpSetting.config");
  155. }
  156. return configPath;
  157. }
  158. }
  159. public SmtpSetting SmtpSetting
  160. {
  161. get
  162. {
  163. XmlDocument doc = new XmlDocument();
  164. doc.Load(this.ConfigFile);
  165. SmtpSetting smtpSetting = new SmtpSetting();
  166. smtpSetting.Server = doc.DocumentElement.SelectSingleNode("Server").InnerText;
  167. smtpSetting.Authentication = Convert.ToBoolean(doc.DocumentElement.SelectSingleNode("Authentication").InnerText);
  168. smtpSetting.UserName = doc.DocumentElement.SelectSingleNode("User").InnerText;
  169. smtpSetting.Password = doc.DocumentElement.SelectSingleNode("Password").InnerText;
  170. smtpSetting.Sender = doc.DocumentElement.SelectSingleNode("Sender").InnerText;
  171. return smtpSetting;
  172. }
  173. }
  174. private SmtpConfig()
  175. {
  176. }
  177. public static SmtpConfig Create()
  178. {
  179. if (_smtpConfig == null)
  180. {
  181. _smtpConfig = new SmtpConfig();
  182. }
  183. return _smtpConfig;
  184. }
  185. }
  186. }