ThinkPHP5,php,邮件
后端开发-php教程
c 在线客服系统源码,vscode还原页面设置,ubuntu 路径空格,tomcat故障转移集群,红石爬虫机,php 模拟登录 验证码,涟水seo优化网络哪家便宜,php网站logo怎么弄,html文章内容页模板lzw
1、Composer 安装 phpmailer
易语言qq盗号源码2014,vscode设计个人简历主页,ubuntu gimp,tomcat配置程序,c sqlite orm,大学生网页设计作品下载,百度云美国服务器租用,jquery加载 插件,iframe前端框架,垃圾爬虫列表,php敏感词,深圳seo优化案例,springboot的定时,淘宝客网站建站源码,文字与网页右上角,公众号建设模板下载,dedecms后台模板utf 8,手机端弹出页面滚动,社团管理系统分析与设计,c 聊天程序lzw
composer require phpmailer/phpmailer
2、ThinkPHP 中封装邮件服务类
aspcms婚纱摄影源码模板,vscode开发板的区别,ubuntu g 使用,tomcat自动窗口闪退,c sqlite 实例,快速网页设计工具,域名无法访问服务器,图片无缝滚动 插件,前端主流框架大全,爬虫时间休眠,php获取星期,钟楼seo推广,springboot 登陆注册,php 网站计数器,百度网页手机模块,psd背景模板,aspcms v2版本后台操作说明书,图片旋转 页面,学籍管理系统论文,匿名群聊小程序源码lzw
我把它封装在扩展目录 extend/Mail.php 文件里,内容如下: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 文件里 ,内容如下:
'utf-8', // 邮件编码 'smtp_debug' => 0, // Debug模式。0: 关闭,1: 客户端消息,2: 客户端和服务器消息,3: 2和连接状态,4: 更详细 'debug_output' => 'html', // Debug输出类型。`echo`(默认),`html`,或`error_log` 'host' => 'smtp.126.com', // SMTP服务器地址 '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 端口。
3、测试
在控制器里方法里,添加测试代码:
public function mail(){ $mail = new \Mail; $ok = $mail->sendMail('xxxxxxxxx@qq.com', 'mingc', '邮件来了', '恭喜,邮件成功!
', 'C:/Users/Administrator/Desktop/body.jpg'); var_dump($ok);}
这里我使用 126 邮箱,安全协议 ssl,端口号 465,发送 html 内容,测试成功: