Email.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. <?php
  2. namespace app\common\library;
  3. use PHPMailer\PHPMailer\PHPMailer;
  4. use think\Config;
  5. class Email
  6. {
  7. /**
  8. * 单例对象
  9. */
  10. protected static $instance;
  11. /**
  12. * phpmailer对象
  13. */
  14. protected $mail = [];
  15. /**
  16. * 错误内容
  17. */
  18. protected $_error = '';
  19. /**
  20. * 默认配置
  21. */
  22. public $options = [
  23. 'charset' => 'utf-8', //编码格式
  24. 'debug' => 0, //调式模式
  25. ];
  26. /**
  27. * 初始化
  28. * @access public
  29. * @param array $options 参数
  30. * @return Email
  31. */
  32. public static function instance($options = [])
  33. {
  34. if (is_null(self::$instance))
  35. {
  36. self::$instance = new static($options);
  37. }
  38. return self::$instance;
  39. }
  40. /**
  41. * 构造函数
  42. * @param array $options
  43. */
  44. public function __construct($options = [])
  45. {
  46. if ($config = Config::get('smtp'))
  47. {
  48. $this->options = array_merge($this->options, $config);
  49. }
  50. $this->options = array_merge($this->options, $options);
  51. vendor('phpmailer.phpmailer.PHPMailerAutoload');
  52. $securArr = [1 => 'tls', 2 => 'ssl'];
  53. $this->mail = new PHPMailer(true);
  54. $this->mail->CharSet = $this->options['charset'];
  55. $this->mail->SMTPDebug = $this->options['debug'];
  56. $this->mail->isSMTP();
  57. $this->mail->SMTPAuth = true;
  58. $this->mail->Host = $this->options['server'];
  59. $this->mail->Username = $this->options['smtpuser'];
  60. $this->mail->Password = $this->options['smtpass'];
  61. $this->mail->SMTPSecure = isset($securArr[$this->options['smttype']]) ? $securArr[$this->options['smttype']] : '';
  62. $this->mail->Port = $this->options['serverport'];
  63. //设置发件人
  64. $this->from($this->options['usermail']);
  65. }
  66. /**
  67. * 设置邮件主题
  68. * @param string $subject
  69. * @return $this
  70. */
  71. public function subject($subject)
  72. {
  73. $this->options['subject'] = $subject;
  74. return $this;
  75. }
  76. /**
  77. * 设置发件人
  78. * @param string $email
  79. * @param string $name
  80. * @return $this
  81. */
  82. public function from($email, $name = '')
  83. {
  84. $this->options['from'] = $email;
  85. $this->options['from_name'] = $name;
  86. return $this;
  87. }
  88. /**
  89. * 设置收件人
  90. * @param string $email
  91. * @param string $name
  92. * @return $this
  93. */
  94. public function to($email, $name = '')
  95. {
  96. $this->options['to'] = $email;
  97. $this->options['to_name'] = $name;
  98. return $this;
  99. }
  100. /**
  101. * 设置邮件正文
  102. * @param string $body
  103. * @param boolean $ishtml
  104. * @return $this
  105. */
  106. public function message($body, $ishtml = true)
  107. {
  108. $this->options['body'] = $body;
  109. $this->options['ishtml'] = $ishtml;
  110. return $this;
  111. }
  112. /**
  113. * 获取最后产生的错误
  114. * @return string
  115. */
  116. public function getError()
  117. {
  118. return $this->_error;
  119. }
  120. /**
  121. * 设置错误
  122. * @param string $error 信息信息
  123. */
  124. protected function setError($error)
  125. {
  126. $this->_error = $error;
  127. }
  128. /**
  129. * 发送邮件
  130. * @return boolean
  131. */
  132. public function send()
  133. {
  134. $result = false;
  135. switch ($this->options['mail_type'])
  136. {
  137. case 1:
  138. //使用phpmailer发送
  139. $this->mail->setFrom($this->options['from'], $this->options['from_name']);
  140. $this->mail->addAddress($this->options['to'], $this->options['to_name']);
  141. $this->mail->Subject = $this->options['subject'];
  142. if ($this->options['ishtml'])
  143. {
  144. $this->mail->msgHTML($this->options['body']);
  145. }
  146. else
  147. {
  148. $this->mail->Body = $this->options['body'];
  149. }
  150. try
  151. {
  152. $result = $this->mail->send();
  153. }
  154. catch (\phpmailerException $e)
  155. {
  156. $this->setError($e->getMessage());
  157. }
  158. $this->setError($result ? '' : $this->mail->ErrorInfo);
  159. break;
  160. case 2:
  161. //使用mail方法发送邮件
  162. $headers = 'MIME-Version: 1.0' . "\r\n";
  163. $headers .= "Content-type: text/html; charset=" . $this->options['charset'] . "\r\n";
  164. $headers .= "To: {$this->options['to_name']} <{$this->options['to']}>\r\n"; //收件人
  165. $headers .= "From: {$this->options['from_name']} <{$this->options['from']}>\r\n"; //发件人
  166. $result = mail($this->options['to'], $this->options['subject'], $this->options['body'], $headers);
  167. $this->setError($result ? '' : error_get_last()['message']);
  168. break;
  169. default:
  170. //邮件功能已关闭
  171. $this->setError(__('Mail already closed'));
  172. break;
  173. }
  174. return $result;
  175. }
  176. }