GitHub下載最新版第三方類庫 PHPMailer;php
第一步:html
打開網址https://github.com/PHPMailer/PHPMailer/ 下載PHPMailer,PHPMailer 須要 PHP 的 sockets 擴展支持,而登陸 QQ 郵箱 SMTP 服務器則必須經過 SSL 加密的, PHP 還得包含 openssl 的支持。git
第二步:使用 phpinfo() 函數查看 socket 和 openssl 擴展信息(wamp server 默認啓用了該擴展)。github
openssl 若是沒有開啓請打開php.ini文件進行開啓thinkphp
首先檢查php.ini中;extension=php_openssl.dll是否存在, 若是存在的話去掉前面的註釋符‘;’, 若是不存在這行,那麼添加extension=php_openssl.dll。安全
全部的主流郵箱都支持 SMTP 協議,但並不是全部郵箱都默認開啓,您能夠在郵箱的設置裏面手動開啓。服務器
第三方服務在提供了帳號和密碼以後就能夠登陸 SMTP 服務器,經過它來控制郵件的中轉方式。socket
選擇 IMAP/SMTP 服務,點擊開啓服務函數
發送短信「配置郵件客戶端」至1069-0700-69thinkphp5
SMTP 服務器認證密碼,須要妥善保管(PS:密碼直接沒有空格)
下面的代碼演示了 PHPMailer 的使用方法,注意 PHPMailer 實例的配置過程。
// 引入PHPMailer的核心文件 require_once("PHPMailer/class.phpmailer.php"); require_once("PHPMailer/class.smtp.php"); // 實例化PHPMailer核心類 $mail = new PHPMailer(); // 是否啓用smtp的debug進行調試 開發環境建議開啓 生產環境註釋掉便可 默認關閉debug調試模式 $mail->SMTPDebug = 1; // 使用smtp鑑權方式發送郵件 $mail->isSMTP(); // smtp須要鑑權 這個必須是true $mail->SMTPAuth = true; // 連接qq域名郵箱的服務器地址 $mail->Host = 'smtp.qq.com'; // 設置使用ssl加密方式登陸鑑權 $mail->SMTPSecure = 'ssl'; // 設置ssl鏈接smtp服務器的遠程服務器端口號 $mail->Port = 465; // 設置發送的郵件的編碼 $mail->CharSet = 'UTF-8'; // 設置發件人暱稱 顯示在收件人郵件的發件人郵箱地址前的發件人姓名 $mail->FromName = '發件人暱稱'; // smtp登陸的帳號 QQ郵箱便可 $mail->Username = '12345678@qq.com'; // smtp登陸的密碼 使用生成的受權碼 $mail->Password = '**********'; // 設置發件人郵箱地址 同登陸帳號 $mail->From = '12345678@qq.com'; // 郵件正文是否爲html編碼 注意此處是一個方法 $mail->isHTML(true); // 設置收件人郵箱地址 $mail->addAddress('87654321@qq.com'); // 添加多個收件人 則屢次調用方法便可 $mail->addAddress('87654321@163.com'); // 添加該郵件的主題 $mail->Subject = '郵件主題'; // 添加郵件正文 $mail->Body = '<h1>Hello World</h1>'; // 爲該郵件添加附件 $mail->addAttachment('./example.pdf'); // 發送郵件 返回狀態 $status = $mail->send();
/**
* 郵件發送
* @param $to 接收人
* @param string $subject 郵件標題
* @param string $content 郵件內容(html模板渲染後的內容)
* @throws Exception
* @throws phpmailerException
*/
function send_email($to,$subject='',$content=''){
vendor('phpmailer.PHPMailerAutoload');
//require_once 'vendor/phpmailer/PHPMailerAutoload.php';
$mail = new PHPMailer;
$arr = db('config')->where('inc_type','smtp')->select();
$config = convert_arr_kv($arr,'name','value');
$mail->CharSet = 'UTF-8'; //設定郵件編碼,默認ISO-8859-1,若是發中文此項必須設置,不然亂碼
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 0;
//調試輸出格式
//$mail->Debugoutput = 'html';
//smtp服務器
$mail->Host = $config['smtp_server'];
//端口 - likely to be 25, 465 or 587
$mail->Port = $config['smtp_port'];
if($mail->Port === 465) $mail->SMTPSecure = 'ssl';// 使用安全協議
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//發送郵箱
$mail->Username = $config['smtp_user'];
//密碼
$mail->Password = $config['smtp_pwd'];
//Set who the message is to be sent from
$mail->setFrom($config['smtp_user'],$config['email_id']);
//回覆地址
//$mail->addReplyTo('replyto@example.com', 'First Last');
//接收郵件方
if(is_array($to)){
foreach ($to as $v){
$mail->addAddress($v);
}
}else{
$mail->addAddress($to);
}
$mail->isHTML(true);// send as HTML//標題 $mail->Subject = $subject;//HTML內容轉換 $mail->msgHTML($content);//Replace the plain text body with one created manually//$mail->AltBody = 'This is a plain-text message body';//添加附件//$mail->addAttachment('images/phpmailer_mini.png');//send the message, check for errors return $mail->send();}