新測 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; // 可以擷取錯誤資訊
http://www.bkjia.com/PHPjc/1075863.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1075863.htmlTechArticle新測 thinkphp3.2 整合 PHPMailer 發送郵件,thinkphp3.2整合dwz PHPMailer 的官方網站:http://phpmailer.worxware.com/ PHPMailer 最新類庫下載地址:【點擊下載...