這次給大家帶來phpmailer使用php發郵件案例解析,phpmailer使用php發郵件的注意事項有哪些,下面就是實戰案例,一起來看一下。
第一步:開啟網址下載PHPMailer,PHPMailer 需要 PHP 的 sockets 擴充支援,而登入 QQ 郵箱 SMTP 伺服器則必須通過 SSL 加密的, PHP 還得包含 openssl 的支援。
第二步:使用 phpinfo() 函數查看 socket 和 openssl 擴充資訊(wamp server 預設啟用了該擴充)。
openssl 如果沒有開啟請開啟php.ini檔案進行開啟
首先檢查php.ini中;extension=php_openssl.dll是否存在, 如果存在的話去掉前面的注釋符‘;', 如果不存在這行,那麼添加extension=php_openssl.dll。
PHPMailer 核心檔案
第三步:QQ 郵箱設定
所有的主流郵箱都支援 SMTP 協議,但並非所有郵箱都預設開啟,您可以在郵箱的設定裡面手動開啟。
第三方服務在提供了帳號和密碼之後就可以登入 SMTP 伺服器,通過它來控制郵件的中轉方式。
第四步:開啟 SMTP 服務
選擇 IMAP/SMTP 服務,點擊開啟服務
第五步:驗證密保
傳送簡訊“配置郵件用戶端”至1069-0700-69
第六步:擷取授權碼
SMTP 伺服器認證密碼,需要妥善保管(PS:密碼直接沒有空格)
第七步:PHP發送郵件
基本代碼
下面的代碼示範了 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();
我在thinkphp5.0中使用代碼
/*** 郵件發送* @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();}
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
PHP冒泡排序使用詳解
PHP實現二叉樹深度與廣度優先遍曆演算法步驟詳解