Brak opisu
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.

Smtpmail.php 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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\user\controller;
  14. use think\Config;
  15. use app\user\logic\SmtpmailLogic;
  16. // 用于邮箱验证
  17. class Smtpmail extends Base
  18. {
  19. public $smtpmailLogic;
  20. /**
  21. * 构造方法
  22. */
  23. public function __construct(){
  24. parent::__construct();
  25. $this->smtpmailLogic = new SmtpmailLogic;
  26. }
  27. /**
  28. * 发送邮件
  29. */
  30. public function send_email($email = '', $title = '', $type = 'reg', $scene = 2, $data = [])
  31. {
  32. \think\Session::pause(); // 暂停session,防止session阻塞机制
  33. // 超时后,断掉邮件发送
  34. function_exists('set_time_limit') && set_time_limit(5);
  35. $data = !empty($data) && !is_array($data) ? json_decode(htmlspecialchars_decode(htmlspecialchars_decode($data)), true) : $data;
  36. $data = $this->smtpmailLogic->send_email($email, $title, $type, $scene, $data);
  37. if (1 == $data['code']) {
  38. $this->success($data['msg']);
  39. } else {
  40. $this->error($data['msg']);
  41. }
  42. }
  43. }