/microsoft/szzgc/source/Szzgc2.0/Utility/MailSender.cs

http://jqbird.googlecode.com/ · C# · 180 lines · 152 code · 24 blank · 4 comment · 13 complexity · f843ba7cd1f0907ace4866f9b21f50a3 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 Utility
  11. {
  12. public class MailSender
  13. {
  14. public static void Send(string server, string sender, string recipient, string subject,
  15. string body, bool isBodyHtml, Encoding encoding, bool isAuthentication, params string[] files)
  16. {
  17. SmtpClient smtpClient = new SmtpClient(server);
  18. MailMessage message = new MailMessage(sender, recipient);
  19. message.IsBodyHtml = isBodyHtml;
  20. message.SubjectEncoding = encoding;
  21. message.BodyEncoding = encoding;
  22. message.Subject = subject;
  23. message.Body = body;
  24. message.Attachments.Clear();
  25. if (files != null && files.Length != 0)
  26. {
  27. for (int i = 0; i < files.Length; ++i)
  28. {
  29. Attachment attach = new Attachment(files[i]);
  30. message.Attachments.Add(attach);
  31. }
  32. }
  33. if (isAuthentication == true)
  34. {
  35. smtpClient.Credentials = new NetworkCredential(SmtpConfig.Create().SmtpSetting.User,
  36. SmtpConfig.Create().SmtpSetting.Password);
  37. }
  38. smtpClient.Send(message);
  39. }
  40. public static void Send(string recipient, string subject, string body)
  41. {
  42. Send(SmtpConfig.Create().SmtpSetting.Server, SmtpConfig.Create().SmtpSetting.Sender, recipient, subject, body, true, Encoding.Default, true, null);
  43. }
  44. public static void Send(string Recipient, string Sender, string Subject, string Body)
  45. {
  46. Send(SmtpConfig.Create().SmtpSetting.Server, Sender, Recipient, Subject, Body, true, Encoding.UTF8, true, null);
  47. }
  48. static readonly string smtpServer = System.Configuration.ConfigurationManager.AppSettings["SmtpServer"];
  49. static readonly string userName = System.Configuration.ConfigurationManager.AppSettings["UserName"];
  50. static readonly string pwd = System.Configuration.ConfigurationManager.AppSettings["Pwd"];
  51. static readonly int smtpPort = Convert.ToInt32(System.Configuration.ConfigurationManager.AppSettings["SmtpPort"]);
  52. static readonly string authorName = System.Configuration.ConfigurationManager.AppSettings["AuthorName"];
  53. static readonly string to = System.Configuration.ConfigurationManager.AppSettings["To"];
  54. public void Send(string subject, string body)
  55. {
  56. List<string> toList = StringPlus.GetSubStringList(StringPlus.ToDBC(to), ',');
  57. OpenSmtp.Mail.Smtp smtp = new OpenSmtp.Mail.Smtp(smtpServer, userName, pwd, smtpPort);
  58. foreach (string s in toList)
  59. {
  60. OpenSmtp.Mail.MailMessage msg = new OpenSmtp.Mail.MailMessage();
  61. msg.From = new OpenSmtp.Mail.EmailAddress(userName, authorName);
  62. msg.AddRecipient(s, OpenSmtp.Mail.AddressType.To);
  63. //??????,?????? html ??
  64. msg.HtmlBody = body;
  65. //??????
  66. msg.Subject = subject;
  67. //?????????
  68. msg.Charset = "gb2312";
  69. //????
  70. smtp.SendMail(msg);
  71. }
  72. }
  73. }
  74. public class SmtpSetting
  75. {
  76. private string _server;
  77. public string Server
  78. {
  79. get { return _server; }
  80. set { _server = value; }
  81. }
  82. private bool _authentication;
  83. public bool Authentication
  84. {
  85. get { return _authentication; }
  86. set { _authentication = value; }
  87. }
  88. private string _user;
  89. public string User
  90. {
  91. get { return _user; }
  92. set { _user = value; }
  93. }
  94. private string _sender;
  95. public string Sender
  96. {
  97. get { return _sender; }
  98. set { _sender = value; }
  99. }
  100. private string _password;
  101. public string Password
  102. {
  103. get { return _password; }
  104. set { _password = value; }
  105. }
  106. }
  107. public class SmtpConfig
  108. {
  109. private static SmtpConfig _smtpConfig;
  110. private string ConfigFile
  111. {
  112. get
  113. {
  114. string configPath = ConfigurationManager.AppSettings["SmtpConfigPath"];
  115. if (string.IsNullOrEmpty(configPath) || configPath.Trim().Length == 0)
  116. {
  117. configPath = HttpContext.Current.Request.MapPath("/Config/SmtpSetting.config");
  118. }
  119. else
  120. {
  121. if (!Path.IsPathRooted(configPath))
  122. configPath = HttpContext.Current.Request.MapPath(Path.Combine(configPath, "SmtpSetting.config"));
  123. else
  124. configPath = Path.Combine(configPath, "SmtpSetting.config");
  125. }
  126. return configPath;
  127. }
  128. }
  129. public SmtpSetting SmtpSetting
  130. {
  131. get
  132. {
  133. XmlDocument doc = new XmlDocument();
  134. doc.Load(this.ConfigFile);
  135. SmtpSetting smtpSetting = new SmtpSetting();
  136. smtpSetting.Server = doc.DocumentElement.SelectSingleNode("Server").InnerText;
  137. smtpSetting.Authentication = Convert.ToBoolean(doc.DocumentElement.SelectSingleNode("Authentication").InnerText);
  138. smtpSetting.User = doc.DocumentElement.SelectSingleNode("User").InnerText;
  139. smtpSetting.Password = doc.DocumentElement.SelectSingleNode("Password").InnerText;
  140. smtpSetting.Sender = doc.DocumentElement.SelectSingleNode("Sender").InnerText;
  141. return smtpSetting;
  142. }
  143. }
  144. private SmtpConfig()
  145. {
  146. }
  147. public static SmtpConfig Create()
  148. {
  149. if (_smtpConfig == null)
  150. {
  151. _smtpConfig = new SmtpConfig();
  152. }
  153. return _smtpConfig;
  154. }
  155. }
  156. }