码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-08-26 19:43:36      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:debug   pos   导致   主题   example   mini   发送邮件   建议   output   

1、Composer 安装 phpmailer

composer require phpmailer/phpmailer

 

2、ThinkPHP 中封装邮件服务类

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

<?php
/**
* 邮件服务类
*/
class Mail extends \PHPMailer
{
	function __construct()
	{
		date_default_timezone_set(‘PRC‘);

		$this->isSMTP();
		$this->SMTPDebug = config(‘mail.smtp_debug‘);
		$this->Debugoutput = config(‘mail.debug_output‘);
		$this->Host = config(‘mail.host‘);
		$this->Port = config(‘mail.port‘);
		$this->SMTPAuth = config(‘mail.smtp_auth‘);
		$this->SMTPSecure = config(‘mail.smtp_secure‘);
		$this->Username = config(‘mail.username‘);
		$this->Password = config(‘mail.password‘);
		$this->setFrom(config(‘mail.from‘), config(‘mail.from_name‘));
		$this->addReplyTo(config(‘mail.reply_to‘), config(‘mail.reply_to_name‘));
	}

	/**
	 * 发送邮件
	 * @param  [type] $toMail      收件人地址
	 * @param  [type] $toName      收件人名称
	 * @param  [type] $subject     邮件主题
	 * @param  [type] $content     邮件内容,支持html
	 * @param  [type] $attachment  附件列表。文件路径或路径数组
	 * @return [type]              成功返回true,失败返回错误消息
	 */
	function sendMail($toMail, $toName, $subject, $content, $attachment = null)
	{
		$this->addAddress($toMail, $toName);
		$this->Subject = $subject;
		$this->msgHTML($content);
		
		if($attachment) { // 添加附件
			if(!is_array($attachment)){
				is_file($attachment) && $this->AddAttachment($attachment);
			}
			else{
				foreach ($attachment as $file) {
		            is_file($file) && $this->AddAttachment($file);
		        }
	        }       
	    }

		if(!$this->send()){ // 发送
		    return $this->ErrorInfo;
		}
		else{
		    return true;
		}
	}
}

 

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

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

<?php
/**
 * 邮件服务相关配置
 */
return [
	‘smtp_debug‘ => 0,                 // debug 模式。0: 关闭,1: 客户端消息,2: 客户端和服务器消息,3: 2和连接状态,4: 更详细
	‘debug_output‘ => ‘html‘,          // debug 输出类型。
	‘host‘ => ‘smtp.126.com‘,          // SMPT 服务器地址
	‘port‘ => 465,                     // 端口号
	‘smtp_auth‘ => true,               // 启用SMTP认证
	‘smtp_secure‘ => ‘ssl‘,            // 启用安全协议
	‘username‘ => ‘yourname@example.com‘,  // SMTP 用户名
	‘password‘ => ‘yourpassword‘,      // SMTP 密码。126邮箱使用客户端授权码,QQ邮箱用独立密码
	‘from‘ => ‘from@example.com‘,      // 发件人邮箱
	‘from_name‘ => ‘name‘,             // 发件人名称
	‘reply_to‘ => ‘‘,                  // 回复邮箱的地址。留空取发件人邮箱
	‘reply_to_name‘ => ‘‘,             // 名称。留空取发件人名称
];

 

注意:一般默认端口 25。如果使用了安全协议 ssl,那么端口号一般是 465 或 587。譬如 126 邮箱。

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

 

3、测试

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

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

  

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

技术分享

 

参考链接:

phpmail 的 STMP 邮件实例

 

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

标签:debug   pos   导致   主题   example   mini   发送邮件   建议   output   

原文地址:http://www.cnblogs.com/mingc/p/7435974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!