程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 新測 thinkphp3.2 整合 PHPMailer 發送郵件,thinkphp3.2整合dwz

新測 thinkphp3.2 整合 PHPMailer 發送郵件,thinkphp3.2整合dwz

編輯:關於PHP編程

新測 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中開頭引入  

<?php
require_once("class.smtp.php");

就可以了。

smtp服務器:smtp.163.com
服務器用戶名:[email protected]
服務器密碼:   xxxxxx

 

163免費郵客戶端設置的POP3、SMTP、IMAP地址

 

下面的設置可以調試SMTP錯誤信息

$mail->SMTPDebug = 3; // 關閉SMTP調試功能

// 1 = errors and messages

// 2 = messages only

$mail->ErrorInfo;    // 可以獲取錯誤信息

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved