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中開頭引入
<?php
require_once("class.smtp.php");
就可以了。
smtp服務器:smtp.163.com
服務器用戶名:[email protected]
服務器密碼: xxxxxx
下面的設置可以調試SMTP錯誤信息
$mail->SMTPDebug = 3; // 關閉SMTP調試功能
// 1 = errors and messages
// 2 = messages only
$mail->ErrorInfo; // 可以獲取錯誤信息