本文實(shí)例為大家分享了PHPMAILER實(shí)現(xiàn)PHP發(fā)郵件功能的具體代碼,供大家參考,具體內(nèi)容如下
第一步:打開網(wǎng)址下載PHPMailer,PHPMailer 需要 PHP 的 sockets 擴(kuò)展支持,而登錄 QQ 郵箱 SMTP 服務(wù)器則必須通過 SSL 加密的, PHP 還得包含 openssl 的支持。
第二步:使用 phpinfo() 函數(shù)查看 socket 和 openssl 擴(kuò)展信息(wamp server 默認(rèn)啟用了該擴(kuò)展)。
openssl 如果沒有開啟請打開php.ini文件進(jìn)行開啟
首先檢查php.ini中;extension=php_openssl.dll是否存在, 如果存在的話去掉前面的注釋符‘;', 如果不存在這行,那么添加extension=php_openssl.dll。
PHPMailer 核心文件
第三步:QQ 郵箱設(shè)置
所有的主流郵箱都支持 SMTP 協(xié)議,但并非所有郵箱都默認(rèn)開啟,您可以在郵箱的設(shè)置里面手動開啟。
第三方服務(wù)在提供了賬號和密碼之后就可以登錄 SMTP 服務(wù)器,通過它來控制郵件的中轉(zhuǎn)方式。
第四步:開啟 SMTP 服務(wù)
選擇 IMAP/SMTP 服務(wù),點(diǎn)擊開啟服務(wù)
第五步:驗(yàn)證密保
發(fā)送短信“配置郵件客戶端”至1069-0700-69
第六步:獲取授權(quán)碼
SMTP 服務(wù)器認(rèn)證密碼,需要妥善保管(PS:密碼直接沒有空格)
第七步:PHP發(fā)送郵件
基本代碼
下面的代碼演示了 PHPMailer 的使用方法,注意 PHPMailer 實(shí)例的配置過程。
// 引入PHPMailer的核心文件
require_once("PHPMailer/class.phpmailer.php");
require_once("PHPMailer/class.smtp.php");
// 實(shí)例化PHPMailer核心類
$mail = new PHPMailer();
// 是否啟用smtp的debug進(jìn)行調(diào)試 開發(fā)環(huán)境建議開啟 生產(chǎn)環(huán)境注釋掉即可 默認(rèn)關(guān)閉debug調(diào)試模式
$mail->SMTPDebug = 1;
// 使用smtp鑒權(quán)方式發(fā)送郵件
$mail->isSMTP();
// smtp需要鑒權(quán) 這個必須是true
$mail->SMTPAuth = true;
// 鏈接qq域名郵箱的服務(wù)器地址
$mail->Host = 'smtp.qq.com';
// 設(shè)置使用ssl加密方式登錄鑒權(quán)
$mail->SMTPSecure = 'ssl';
// 設(shè)置ssl連接smtp服務(wù)器的遠(yuǎn)程服務(wù)器端口號
$mail->Port = 465;
// 設(shè)置發(fā)送的郵件的編碼
$mail->CharSet = 'UTF-8';
// 設(shè)置發(fā)件人昵稱 顯示在收件人郵件的發(fā)件人郵箱地址前的發(fā)件人姓名
$mail->FromName = '發(fā)件人昵稱';
// smtp登錄的賬號 QQ郵箱即可
$mail->Username = '12345678@qq.com';
// smtp登錄的密碼 使用生成的授權(quán)碼
$mail->Password = '**********';
// 設(shè)置發(fā)件人郵箱地址 同登錄賬號
$mail->From = '12345678@qq.com';
// 郵件正文是否為html編碼 注意此處是一個方法
$mail->isHTML(true);
// 設(shè)置收件人郵箱地址
$mail->addAddress('87654321@qq.com');
// 添加多個收件人 則多次調(diào)用方法即可
$mail->addAddress('87654321@163.com');
// 添加該郵件的主題
$mail->Subject = '郵件主題';
// 添加郵件正文
$mail->Body = 'h1>Hello World/h1>';
// 為該郵件添加附件
$mail->addAttachment('./example.pdf');
// 發(fā)送郵件 返回狀態(tài)
$status = $mail->send();
我在thinkphp5.0中使用代碼
/**
* 郵件發(fā)送
* @param $to 接收人
* @param string $subject 郵件標(biāo)題
* @param string $content 郵件內(nèi)容(html模板渲染后的內(nèi)容)
* @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'; //設(shè)定郵件編碼,默認(rèn)ISO-8859-1,如果發(fā)中文此項(xiàng)必須設(shè)置,否則亂碼
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 0;
//調(diào)試輸出格式
//$mail->Debugoutput = 'html';
//smtp服務(wù)器
$mail->Host = $config['smtp_server'];
//端口 - likely to be 25, 465 or 587
$mail->Port = $config['smtp_port'];
if($mail->Port === 465) $mail->SMTPSecure = 'ssl';// 使用安全協(xié)議
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//發(fā)送郵箱
$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']);
//回復(fù)地址
//$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
//標(biāo)題
$mail->Subject = $subject;
//HTML內(nèi)容轉(zhuǎn)換
$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();
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
您可能感興趣的文章:- PHPMailer使用教程(PHPMailer發(fā)送郵件實(shí)例分析)
- PHPMailer郵件類利用smtp.163.com發(fā)送郵件方法
- phpmailer在服務(wù)器上不能正常發(fā)送郵件的解決辦法
- phpmailer簡單發(fā)送郵件的方法(附phpmailer源碼下載)
- 使用php發(fā)送有附件的電子郵件-(PHPMailer使用的實(shí)例分析)
- PHPMailer郵件發(fā)送的實(shí)現(xiàn)代碼
- 163的郵件用phpmailer發(fā)送(實(shí)例詳解)
- PHPMailer發(fā)送HTML內(nèi)容、帶附件的郵件實(shí)例
- Linux服務(wù)器下PHPMailer發(fā)送郵件失敗的問題解決
- ThinkPHP利用PHPMailer實(shí)現(xiàn)郵件發(fā)送實(shí)現(xiàn)代碼