No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EmailLogic.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\common\logic;
  14. use think\Db;
  15. /**
  16. * Description of SmsLogic
  17. *
  18. * 邮件类
  19. */
  20. class EmailLogic
  21. {
  22. private $config;
  23. private $home_lang;
  24. public function __construct($smtp_config = [])
  25. {
  26. $this->config = !empty($smtp_config) ? $smtp_config : tpCache('smtp');
  27. $this->home_lang = get_home_lang();
  28. }
  29. /**
  30. * 置换邮件模版内容
  31. * @param intval $scene 应用场景
  32. */
  33. private function replaceContent($scene = '', $params = '')
  34. {
  35. if (0 == intval($scene)) {
  36. $msg = $params;
  37. } else {
  38. $params_arr = [];
  39. $emailTemp = Db::name('smtp_tpl')->where([
  40. 'send_scene'=> $scene,
  41. 'lang' => $this->home_lang,
  42. ])->find();
  43. if (!empty($emailTemp)) {
  44. $msg = $emailTemp['tpl_content'];
  45. preg_match_all('/\${([^\}]+)}/i', $msg, $matchs);
  46. if (!empty($matchs[1])) {
  47. foreach ($matchs[1] as $key => $val) {
  48. if (is_array($params)) {
  49. $params_arr[$val] = $params[$val];
  50. } else {
  51. $params_arr[$val] = $params;
  52. }
  53. }
  54. }
  55. //置换邮件模版内容
  56. foreach ($params_arr as $k => $v) {
  57. $msg = str_replace('${' . $k . '}', $v, $msg);
  58. }
  59. } else {
  60. return '';
  61. }
  62. }
  63. return $msg;
  64. }
  65. /**
  66. * 邮件发送
  67. * @param $to 接收人
  68. * @param string $subject 邮件标题
  69. * @param string|array $data 邮件内容(html模板渲染后的内容)
  70. * @param string $scene 使用场景
  71. * @throws Exception
  72. */
  73. public function send_email($to='', $subject='', $data='', $scene=1, $library = 'phpmailer'){
  74. if (0 < intval($scene)) {
  75. $smtp_tpl_row = Db::name('smtp_tpl')->where([
  76. 'send_scene'=> $scene,
  77. 'lang' => $this->home_lang,
  78. ])->find();
  79. if (empty($smtp_tpl_row)) {
  80. return ['code'=>0,'msg'=>'找不到相关邮件模板!'];
  81. } else if (empty($smtp_tpl_row['is_open'])) {
  82. return ['code'=>0,'msg'=>'该功能待开放,请先启用邮件模板('.$smtp_tpl_row['tpl_name'].')'];
  83. } else {
  84. empty($subject) && $subject = $smtp_tpl_row['tpl_title'];
  85. }
  86. }
  87. switch ($library) {
  88. case 'phpmailer':
  89. return $this->send_phpmailer($to, $subject, $data, $scene);
  90. break;
  91. case 'swiftmailer':
  92. return $this->send_swiftmailer($to, $subject, $data, $scene);
  93. break;
  94. default:
  95. return $this->send_phpmailer($to, $subject, $data, $scene);
  96. break;
  97. }
  98. }
  99. /**
  100. * 邮件发送 - swiftmailer第三方库
  101. * @param $to 接收人
  102. * @param string $subject 邮件标题
  103. * @param string|array $data 邮件内容(html模板渲染后的内容)
  104. * @param string $scene 使用场景
  105. * @throws Exception
  106. */
  107. private function send_swiftmailer($to='', $subject='', $data='', $scene=1){
  108. vendor('swiftmailer.lib.swift_required');
  109. // require_once 'vendor/swiftmailer/lib/swift_required.php';
  110. try {
  111. //判断openssl是否开启
  112. $openssl_funcs = get_extension_funcs('openssl');
  113. if(!$openssl_funcs){
  114. return array('code'=>0 , 'msg'=>'请先开启php的openssl扩展');
  115. }
  116. //判断openssl是否开启
  117. // $sockets_funcs = get_extension_funcs('sockets');
  118. // if(!$sockets_funcs){
  119. // return array('code'=>0 , 'msg'=>'请先开启php的sockets扩展');
  120. // }
  121. empty($to) && $to = $this->config['smtp_from_eamil'];
  122. $to = explode(',', $to);
  123. //smtp服务器
  124. $host = $this->config['smtp_server'];
  125. //端口 - likely to be 25, 465 or 587
  126. $port = intval($this->config['smtp_port']);
  127. //用户名
  128. $user = $this->config['smtp_user'];
  129. //密码
  130. $pwd = $this->config['smtp_pwd'];
  131. //发送者
  132. $from = $this->config['smtp_user'];
  133. //发送者名称
  134. $from_name = $user;//tpCache('web.web_name');
  135. // 使用安全协议
  136. $encryption_type = null;
  137. switch ($port) {
  138. case 465:
  139. $encryption_type = 'ssl';
  140. break;
  141. case 587:
  142. $encryption_type = 'tls';
  143. break;
  144. default:
  145. # code...
  146. break;
  147. }
  148. //HTML内容转换
  149. $body = $this->replaceContent($scene, $data);
  150. // Create the Transport
  151. $transport = (new \Swift_SmtpTransport($host, $port, $encryption_type))
  152. ->setUsername($user)
  153. ->setPassword($pwd);
  154. // Create the Mailer using your created Transport
  155. $mailer = new \Swift_Mailer($transport);
  156. // Create a message
  157. $message = (new \Swift_Message($subject))
  158. ->setFrom([$from=>$from_name])
  159. // ->setTo([$to, '第二个接收者邮箱' => '别名'])
  160. ->setTo($to)
  161. ->setContentType("text/html")
  162. ->setBody($body);
  163. // Send the message
  164. $result = $mailer->send($message);
  165. if (!$result) {
  166. return array('code'=>0 , 'msg'=>'发送失败');
  167. } else {
  168. return array('code'=>1 , 'msg'=>'发送成功');
  169. }
  170. } catch (\Exception $e) {
  171. return array('code'=>0 , 'msg'=>'发送失败: '.$e->errorMessage());
  172. }
  173. }
  174. /**
  175. * 邮件发送 - 第三方库phpmailer
  176. * @param $to 接收人
  177. * @param string $subject 邮件标题
  178. * @param string|array $data 邮件内容(html模板渲染后的内容)
  179. * @param string $scene 使用场景
  180. * @throws Exception
  181. */
  182. private function send_phpmailer($to='', $subject='', $data='', $scene=1){
  183. vendor('phpmailer.PHPMailerAutoload');
  184. try {
  185. //判断openssl是否开启
  186. $openssl_funcs = get_extension_funcs('openssl');
  187. if(!$openssl_funcs){
  188. return array('code'=>0 , 'msg'=>'请先开启php的openssl扩展');
  189. }
  190. //判断openssl是否开启
  191. // $sockets_funcs = get_extension_funcs('sockets');
  192. // if(!$sockets_funcs){
  193. // return array('code'=>0 , 'msg'=>'请先开启php的sockets扩展');
  194. // }
  195. $mail = new \PHPMailer;
  196. $mail->CharSet = 'UTF-8'; //设定邮件编码,默认ISO-8859-1,如果发中文此项必须设置,否则乱码
  197. $mail->isSMTP();
  198. //Enable SMTP debugging
  199. // 0 = off (for production use)
  200. // 1 = client messages
  201. // 2 = client and server messages
  202. $mail->SMTPDebug = 0;
  203. //调试输出格式
  204. //$mail->Debugoutput = 'html';
  205. //接收者邮件
  206. empty($to) && $to = $this->config['smtp_from_eamil'];
  207. $to = explode(',', $to);
  208. //smtp服务器
  209. $mail->Host = $this->config['smtp_server'];
  210. //端口 - likely to be 25, 465 or 587
  211. $mail->Port = intval($this->config['smtp_port']);
  212. // 使用安全协议
  213. switch ($mail->Port) {
  214. case 465:
  215. $mail->SMTPSecure = 'ssl';
  216. break;
  217. case 587:
  218. $mail->SMTPSecure = 'tls';
  219. break;
  220. default:
  221. # code...
  222. break;
  223. }
  224. //Whether to use SMTP authentication
  225. $mail->SMTPAuth = true;
  226. //用户名
  227. $mail->Username = $this->config['smtp_user'];
  228. //密码
  229. $mail->Password = $this->config['smtp_pwd'];
  230. //Set who the message is to be sent from
  231. $mail->setFrom($this->config['smtp_user']);
  232. //回复地址
  233. //$mail->addReplyTo('replyto@example.com', 'First Last');
  234. //接收邮件方
  235. if(is_array($to)){
  236. foreach ($to as $v){
  237. $mail->addAddress($v);
  238. }
  239. }else{
  240. $mail->addAddress($to);
  241. }
  242. $mail->isHTML(true);// send as HTML
  243. //标题
  244. $mail->Subject = $subject;
  245. //HTML内容转换
  246. $content = $this->replaceContent($scene, $data);
  247. $mail->msgHTML($content);
  248. //Replace the plain text body with one created manually
  249. //$mail->AltBody = 'This is a plain-text message body';
  250. //添加附件
  251. //$mail->addAttachment('images/phpmailer_mini.png');
  252. //send the message, check for errors
  253. $result = $mail->send();
  254. if (!$result) {
  255. $msg = $mail->ErrorInfo;
  256. if (stristr($msg, 'smtp connect() failed')) {
  257. if (465 == $mail->Port) {
  258. $msg = '<br/>1.请检查配置是否正确<br/>2.空间是否开启函数fsockopen<br/>3.尝试切换PHP不同版本重试';
  259. } else {
  260. $msg = '请检查SMTP端口填写是否正确,一般默认是465端口,其次25端口,具体请参看各STMP服务商的设置说明。';
  261. }
  262. }
  263. return array('code'=>0 , 'msg'=>'发送失败:'.$msg);
  264. } else {
  265. return array('code'=>1 , 'msg'=>'发送成功');
  266. }
  267. } catch (\Exception $e) {
  268. return array('code'=>0 , 'msg'=>'发送失败: '.$e->errorMessage());
  269. }
  270. }
  271. }