当前位置:Gxlcms > PHP教程 > 新测thinkphp32整合PHPMailer发送邮件

新测thinkphp32整合PHPMailer发送邮件

时间:2021-07-01 10:21:17 帮助过:7人阅读

PHPMailer 的官方网站:http://phpmailer.worxware.com/

PHPMailer 最新类库下载地址:【点击下载】

PHPMailer GitHub 下载地址:https://Github.com/Synchro/PHPMailer,该页面也提供了使用例子,不过不是很全面。

参考 http://my.oschina.net/BearCatYN/blog/299192 的的博文

只选择了其中目录设置的部分

参考 http://jingyan.baidu.com/article/0bc808fc6498cd1bd585b95c.html 的文章
参考了里面的代码,和php.in 配置

即使作完以上步骤,依然会报错 SMTP 类无法找到,只要在class.phpmailer.php中开头引入

require_once("class.smtp.php");
就可以了。

smtp服务器:smtp.163.com
服务器用户名:xxxxx@163.com
服务器密码: xxxxxx

新测 thinkphp32 整合 PHPMailer <strong>发送邮件</strong>

下面的设置可以调试SMTP错误信息

$mail->SMTPDebug = 3; // 关闭SMTP调试功能

// 1 = errors and messages

// 2 = messages only

$mail->ErrorInfo; // 可以获取错误信息

以上就介绍了新测 thinkphp32 整合 PHPMailer 发送邮件,包括了require,Git,github方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行