ThinkPHP使用phpmailer发送邮件整合以及各种坑

天锦 发表于 某的代码片段 分类,标签: Class 'PHPMailer' not foundThinkPHP5PHPMailerThinkPHP发送邮件

最近要做一个通过Email找回密码的功能,随即Google……最终找到了PHPMailer这个宝贝,就照着例子写了起来。

参考http://www.thinkphp.cn/topic/44477.html

第一步:使用composer安装phpmailer

composer require phpmailer/phpmailer

第二步:common.php写个发送邮件的函数(腾讯邮箱的为例)

/**
 * 系统邮件发送函数
 * @param string $tomail 接收邮件者邮箱
 * @param string $name 接收邮件者名称
 * @param string $subject 邮件主题
 * @param string $body 邮件内容
 * @param string $attachment 附件列表
 * @return boolean
 * @author static7 <static7@qq.com>
 */
function send_mail($tomail, $name, $subject = '', $body = '', $attachment = null) {
    $mail = new \PHPMailer();           //实例化PHPMailer对象
    $mail->CharSet = 'UTF-8';           //设定邮件编码,默认ISO-8859-1,如果发中文此项必须设置,否则乱码
    $mail->IsSMTP();                    // 设定使用SMTP服务
    $mail->SMTPDebug = 0;               // SMTP调试功能 0=关闭 1 = 错误和消息 2 = 消息
    $mail->SMTPAuth = true;             // 启用 SMTP 验证功能
    $mail->SMTPSecure = 'ssl';          // 使用安全协议
    $mail->Host = "smtp.exmail.qq.com"; // SMTP 服务器
    $mail->Port = 465;                  // SMTP服务器的端口号
    $mail->Username = "static7@qq.com";    // SMTP服务器用户名
    $mail->Password = "";     // SMTP服务器密码
    $mail->SetFrom('static7@qq.com', 'static7');
    $replyEmail = '';                   //留空则为发件人EMAIL
    $replyName = '';                    //回复名称(留空则为发件人名称)
    $mail->AddReplyTo($replyEmail, $replyName);
    $mail->Subject = $subject;
    $mail->MsgHTML($body);
    $mail->AddAddress($tomail, $name);
    if (is_array($attachment)) { // 添加附件
        foreach ($attachment as $file) {
            is_file($file) && $mail->AddAttachment($file);
        }
    }
    return $mail->Send() ? true : $mail->ErrorInfo;
}

第三步:控制器方法里写发送的内容

/**
     * tp5邮件
     * @param
     * @author staitc7 <static7@qq.com>
     * @return mixed
     */
    public function email() {
        $toemail='static7@qq.com';
        $name='static7';
        $subject='QQ邮件发送测试';
        $content='恭喜你,邮件测试成功。';
        dump(send_mail($toemail,$name,$subject,$content));
    }

然而~坑还是不少~

坑一:composer无响应无输出:

输入

composer require phpmailer/phpmailer

命令按下回车后控制台没有任何响应,无输出。

原因:天朝局域网的问题。

验证:输入

composer require phpmailer/phpmailer -vvv

后可以看到卡在了某些文件的下载上,换composer国内镜像站即可。

解决办法:参考https://pkg.phpcomposer.com/

坑二:出现Class 'PHPMailer' not found

千方百计地终于把phpmailer安装到项目里面了,也使用了

vendor("phpmailer.phpmailer.src.PHPMailer");

加载了PHPMailer,查看了DeBug,PHPMailer.php也确实被加载了,然而在实例化时还是报Class 'PHPMailer' not found……

原因:命名空间的坑,PHPMailer.php中包含了

namespace PHPMailer\PHPMailer;

所以在使用

$mail = new \PHPMailer();

是对不上的……

要这样写:

$mail = new \PHPMailer\PHPMailer\PHPMailer();


0 篇评论

发表我的评论