当前位置:首页 > CMS教程 > Thinkphp > 列表

ThinkPHP5邮件发送服务封装(可发附件)

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-17 10:40:26 浏览: 评论:0 

这篇文章主要介绍了ThinkPHP5封装邮件发送服务,可发附件,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了ThinkPHP5封装邮件发送服务的具体代码,供大家参考,具体内容如下

1.Composer安装phpmailer

composer require phpmailer/phpmailer

2.ThinkPHP中封装邮件服务类

我把它封装在扩展目录 extend/Mail.php 文件里,内容如下:

  1. <?php 
  2. /** 
  3. * 邮件服务类 
  4. */ 
  5. class Mail extends \PHPMailer 
  6.   function __construct() 
  7.   { 
  8.     date_default_timezone_set('PRC');             // 默认时区设置 
  9.    
  10.     $this->CharSet = config('mail.charset');          // 邮件编码设置 
  11.     $this->isSMTP();                      // 启用SMTP服务 
  12.     $this->SMTPDebug = config('mail.smtp_debug');       // Debug模式级别 
  13.     $this->Debugoutput = config('mail.debug_output');     // Debug输出类型 
  14.     $this->Host = config('mail.host');             // SMTP服务器地址 
  15.     $this->Port = config('mail.port');             // 端口号 
  16.     $this->SMTPAuth = config('mail.smtp_auth');        // SMTP登录认证 
  17.     $this->SMTPSecure = config('mail.smtp_secure');      // SMTP安全协议 
  18.     $this->Username = config('mail.username');         // SMTP登录邮箱 
  19.     $this->Password = config('mail.password');         // SMTP登录密码 
  20.     $this->setFrom(config('mail.from'), config('mail.from_name'));      // 发件人邮箱和名称 
  21.     $this->addReplyTo(config('mail.reply_to'), config('mail.reply_to_name')); // 回复邮箱和名称 
  22.   } 
  23.    
  24.   /** 
  25.    * 发送邮件 
  26.    * @param [type] $toMail   收件人地址 
  27.    * @param [type] $toName   收件人名称 
  28.    * @param [type] $subject   邮件主题 
  29.    * @param [type] $content   邮件内容,支持html 
  30.    * @param [type] $attachment 附件列表。文件路径或路径数组 
  31.    * @return [type]       成功返回true,失败返回错误消息 
  32.    */ 
  33.   function sendMail($toMail$toName$subject$content$attachment = null) 
  34.   { 
  35.     $this->addAddress($toMail$toName); 
  36.     $this->Subject = $subject
  37.     $this->msgHTML($content); 
  38.        
  39.     if($attachment) { // 添加附件 
  40.       if(is_string($attachment)){ 
  41.         is_file($attachment) && $this->AddAttachment($attachment); 
  42.       } 
  43.       else if(is_array($attachment)){ 
  44.         foreach ($attachment as $file) { 
  45.           is_file($file) && $this->AddAttachment($file); 
  46.         } 
  47.       }    
  48.     } 
  49.    
  50.     if(!$this->send()){ // 发送 
  51.       return $this->ErrorInfo; 
  52.     } 
  53.     else
  54.       return true; 
  55.     } 
  56.   } 

注意:如果发送附件,建议使用英文路径,中文路径可能会导致附件发送失败,收到的邮件没有附件。

上面需要的一些配置参数,我把它们放在扩展配置目录 application/extra/mail.php 文件里 ,内容如下:

  1. <?php 
  2. /** 
  3.  * 邮件服务相关配置 
  4.  */ 
  5. return [ 
  6.   'charset' => 'utf-8',         // 邮件编码 
  7.   'smtp_debug' => 0,           // Debug模式。0: 关闭,1: 客户端消息,2: 客户端和服务器消息,3: 2和连接状态,4: 更详细 
  8.   'debug_output' => 'html',       // Debug输出类型。`echo`(默认),`html`,或`error_log` 
  9.   'host' => 'smtp.126.com',       // SMTP服务器地址 
  10.   'port' => 465,             // 端口号。默认25 
  11.   'smtp_auth' => true,          // 启用SMTP认证 
  12.   'smtp_secure' => 'ssl',        // 启用安全协议。''(默认),'ssl'或'tls',留空不启用 
  13.   'username' => 'yourname@example.com'// SMTP登录邮箱 
  14.   'password' => 'yourpassword',     // SMTP登录密码。126邮箱使用客户端授权码,QQ邮箱用独立密码 
  15.   'from' => 'from@example.com',     // 发件人邮箱 
  16.   'from_name' => 'name',         // 发件人名称 
  17.   'reply_to' => '',           // 回复邮箱的地址。留空取发件人邮箱 
  18.   'reply_to_name' => '',         // 回复邮箱人名称。留空取发件人名称 
  19. ]; 

注意:一般默认端口 25。如果使用了安全协议 ssl,那么端口号一般是 465 或 587。譬如 126 邮箱。建议使用安全协议,因为像阿里云服务器就禁止了非安全协议的 25 端口。

更多配置参数,可以看看源码:https://github.com/PHPMailer/PHPMailer/blob/master/class.phpmailer.php

3.测试

在控制器里方法里,添加测试代码:

  1. public function mail() 
  2.   $mail = new \Mail; 
  3.   $ok = $mail->sendMail('xxxxxxxxx@qq.com''mingc''邮件来了''<p style="color: #f60; font-weight: 700;">恭喜,邮件成功!</p>''C:/Users/Administrator/Desktop/body.bmp'); 
  4.   var_dump($ok); 

这里我使用 126 邮箱,安全协议 ssl,端口号 465,发送 html 内容,测试成功:

参考链接:phpmail 的 SMTP 邮件实例

Tags: ThinkPHP5邮件发送

分享到: