ThinkPHP5 封装邮件发送服务(可发附件)
1、Composer 安装 phpmailer
1
|
composer require phpmailer /phpmailer |
2、ThinkPHP 中封装邮件服务类
我把它封装在扩展目录 extend/Mail.php 文件里,内容如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?php /** * 邮件服务类 */ class Mail extends \PHPMailer { function __construct() { date_default_timezone_set( 'PRC' ); // 默认时区设置 $this ->CharSet = config( 'mail.charset' ); // 邮件编码设置 $this ->isSMTP(); // 启用SMTP服务 $this ->SMTPDebug = config( 'mail.smtp_debug' ); // Debug模式级别 $this ->Debugoutput = config( 'mail.debug_output' ); // Debug输出类型 $this ->Host = config( 'mail.host' ); // SMTP服务器地址 $this ->Port = config( 'mail.port' ); // 端口号 $this ->SMTPAuth = config( 'mail.smtp_auth' ); // SMTP登录认证 $this ->SMTPSecure = config( 'mail.smtp_secure' ); // SMTP安全协议 $this ->Username = config( 'mail.username' ); // SMTP登录邮箱 $this ->Password = config( 'mail.password' ); // SMTP登录密码 $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_string ( $attachment )){ is_file ( $attachment ) && $this ->AddAttachment( $attachment ); } else if ( is_array ( $attachment )){ foreach ( $attachment as $file ) { is_file ( $file ) && $this ->AddAttachment( $file ); } } } if (! $this ->send()){ // 发送 return $this ->ErrorInfo; } else { return true; } } } |
注意:如果发送附件,建议使用英文路径。中文路径可能会导致附件发送失败,收到的邮件没有附件。
上面需要的一些配置参数,我把它们放在扩展配置目录 application/extra/mail.php 文件里 ,内容如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php /** * 邮件服务相关配置 */ return [ 'charset' => 'utf-8' , // 邮件编码 'smtp_debug' => 0, // Debug模式。0: 关闭,1: 客户端消息,2: 客户端和服务器消息,3: 2和连接状态,4: 更详细 'debug_output' => 'html' , // Debug输出类型。`echo`(默认),`html`,或`error_log` 'host' => 'smtp.126.com' , // SMPT服务器地址 'port' => 465, // 端口号。默认25 'smtp_auth' => true, // 启用SMTP认证 'smtp_secure' => 'ssl' , // 启用安全协议。''(默认),'ssl'或'tls',留空不启用 '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 邮箱。建议使用安全协议,因为像阿里云服务器就禁止了非安全协议的 25 端口。
更多配置参数,可以看看源码:https://github.com/PHPMailer/PHPMailer/blob/master/class.phpmailer.php
3、测试
在控制器里方法里,添加测试代码:
1
2
3
4
5
6
|
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 封装邮件发送服务(可发附件)的更多相关文章
- ThinkPHP5 封装邮件发送服务(可带附件)
1.Composer 安装 phpmailer composer require phpmailer/phpmailer 2.ThinkPHP 中封装邮件服务类 我把它封装在扩展目录 extend/M ...
- 邮件发送服务AWS SES,Mailgun以及SendCloud(转)
原文:http://www.l4zy.com/posts/aws_ses-mailgun-sendcloud.html 电子邮件这一已经诞生很多年的互联网基础服务并没有随着时间的推移而慢慢消亡,实际上 ...
- 【故障公告】SendCloud 邮件发送服务故障造成大量 QQ 邮箱收不到邮件
抱歉,由于我们所使用的搜狐旗下的 SendCloud 邮件发送服务出现故障,今天上午大量发往 @qq.com 邮箱的邮件无法正常发送,从 SendCloud 管理控制台看这些邮件一直处于“请求中”的状 ...
- 免费超大量邮件发送服务Amazon SES和Mailgun提供SMTP和API支持
一般来说网站注册.论坛消息.新闻推送.广告宣传等都会有发送邮件服务,大量的邮件发送服务如果用PHP来发送,一是会消耗主机资源,二是容易被各大邮箱判定为垃圾邮件而被拒收.用第三方的邮局服务发送邮件,可以 ...
- c#邮件发送服务
邮件发送服务 项目中会遇到定时给某人发送邮件的功能要求,这里是京东的一段代码,当然也是我同事找的,我记录学习一下,以免忘记. 这是解决方案 这里主要是工具:日志工具,链接数据库工具,发送邮件工具 这里 ...
- SpringBoot系列(十四)集成邮件发送服务及邮件发送的几种方式
往期推荐 SpringBoot系列(一)idea新建Springboot项目 SpringBoot系列(二)入门知识 springBoot系列(三)配置文件详解 SpringBoot系列(四)web静 ...
- 纯java实现邮件发送服务(亲测好用)
今天自己测试了一下用java代码实现发送有限的服务,非常简单.直接贴代码: import com.sun.mail.util.MailSSLSocketFactory; import javax.ma ...
- Java 基于mail.jar 和 activation.jar 封装的邮件发送工具类
准备工作 发送邮件需要获得协议和支持! 开启服务 POP3/SMTP 服务 如何开启 POP3/SMTP 服务:https://www.cnblogs.com/pojo/p/14276637.html ...
- Java实现多线程邮件发送
利用java多线程技术配合线程池实现多任务邮件发送. 1.基本邮件发送MailSender package hk.buttonwood.ops.email; import java.io.File; ...
随机推荐
- 《深入理解Java虚拟机》读书笔记:Java内存区域
xmind文件下载地址
- unity---Courtine 协程
尊重他人的劳动,支持原创,转载请注明出处:http.dsqiu.iteye.com 记得去年6月份刚开始实习的时候,当时要我写网络层的结构,用到了协程,当时有点懵,完全不知道Unity协程的执行机制是 ...
- javascript -- canvas绘制曲线
绘制曲线有几种思路: 1.通过quadraticCurveTo(controlX, controlY, endX, endY)方法来绘制二次曲线 2.通过bezierCurveTo(controlX1 ...
- php -- 取整数
PHP取整数函数常用的四种方法,下面收集了四个函数: 经常用到取整的函数,今天小小的总结一下!其实很简单,就是几个函数而已--主要是:ceil,floor,round,intval ceil — 进一 ...
- WEB网页监控系统的设计框架思路具体解释
提示:也能够直接在LCD上显示摄像头数据.这个參考luvcview源代码.设计思路思将YUV或者MJPEG格式的数据转换成RGB格式的数据,然后实现图片的缩放,图像缩放算法:点击这里!,然后写到fra ...
- image 和 barplot 的组合
代码示例: par(mfrow = c(1, 2)) par(mar = c(1, 10, 1, 0), las = 1, ann = F) image(1:10, 1:10, matrix(samp ...
- c# 正则实践
Regex reg = new Regex(@"<img[\s]+src[\s]*=[\s]*['""](?<picPath>.*)['"&q ...
- Sublime text 3 中Package Control 的安装与使用方法
Package Control插件本身是一个为了方便管理插件的插件,在Sublime text 3中,Package Control 的安装方法一开始出来的方法是要先安装Git, 再输入代码来安装,原 ...
- 【Ubuntu】录屏软件
http://www.leesven.com/2378.html sudo apt-get install kazam
- sql产生随机数
使用RAND(),结果是类似于这样的随机小数:0.615942003695649 SELECT FLOOR(RAND()*N) ---生成的数是这样的:12.0 SELECT CAST(FLOOR( ...