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; ...
随机推荐
- 【吉比特】G-bits2018校园春季招聘技术类岗位笔试经验
笔试公司:厦门吉比特网络技术股份有限公司 笔试岗位:游戏研发工程师 笔试时间:2018年3月30日19:00-20:30 笔试形式:牛客网在线做题 笔试回忆: 笔试总共时长1小时半,共52道题.其中选 ...
- C# 在托盘显示图标
//上面一行是主窗体InitializeComponent()方法中需要添加的引用 this.SizeChanged += new System.EventHandler(this.Form1_Siz ...
- C# 时间比较方法DateTime.Compare
public static int Compare(DateTime t1,DateTime t2) 返回值 类型:System..::.Int32 有符号数字,指示 t1 和 t2 的相对值. 值类 ...
- C# 判断字符串为空有哪几种方法
Length法:);Empty法:bool isEmpty = (str == String.Empty);General法:bool isEmpty = (str == ""); ...
- 使用 mysql_use_result 还是使用 mysql_store_result?
From: http://my.oschina.net/moooofly/blog/186456 本文整理了关于“使用 mysql_use_result 还是 mysql_store_result”的 ...
- lvm讲解/磁盘故障小案例
4.10/4.11/4.12 lvm讲解 4.13 磁盘故障小案例 lvm讲解 磁盘故障小案例
- 监听事件绑定(addEventListener、attachEvent)和移除(removeEventListener、detachEvent)
/** * @description 事件绑定,兼容各浏览器 * @param target 事件触发对象 * @param type 事件 * @param func 事件处理函数 */ funct ...
- tftp
Ubuntu 12.04 tftp 设置 1.sudo apt-get install tftp-hpa tftpd-hpa 2.修改/etc/default/tftpd-hpa TFTP_USERN ...
- 放假前来个笑话:IT人士群聚喝酒的讲究(超级搞笑)
大家喝的是啤酒,这时你入座了…… 你给自己倒了杯可乐,这叫低配置. 你给自已倒了杯啤酒,这叫标准配置. 你给自己倒了杯茶水,这茶的颜色还跟啤酒一样,这叫木马. 你给自己倒了杯可乐,还滴了几滴醋,不仅颜 ...
- Win7下telnet使用
出于安全考虑,win7已经禁用了telnet这一功能, telnet是明文传输的,安全性很差. 知道了这一点就不奇怪为什么在win7下不能使用telnet了,下面就详细介绍下如何重新开启telnet服 ...