Home > php教程 > php手册 > body text

新测 thinkphp3.2 整合 PHPMailer 发送邮件,thinkphp3.2整合dwz

WBOY
Release: 2016-06-13 08:50:15
Original
1207 people have browsed it

新测 thinkphp3.2 整合 PHPMailer 发送邮件,thinkphp3.2整合dwz

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

 

 

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

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

// 1 = errors and messages

// 2 = messages only

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

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!