您好,登錄后才能下訂單哦!
composer require phpmailer/phpmailer
簡單實例
<?php
namespace app\common\event;
class EMail {
function send($to, $name, $subject = '', $body = '', $attachment = null) {
$mail = new \PHPMailer\PHPMailer\PHPMailer(); //實例化PHPMailer對象
$mail->CharSet = 'UTF-8'; //設定郵件編碼,默認ISO-8859-1,如果發中文此項必須設置,否則亂碼
$mail->IsSMTP(); // 設定使用SMTP服務
$mail->SMTPDebug = 1; // SMTP調試功能 0=關閉 1 = 錯誤和消息 2 = 消息
$mail->SMTPAuth = true; // 啟用 SMTP 驗證功能
$mail->SMTPSecure = 'ssl'; // 使用安全協議
// $mail->Host = "smtp.exmail.qq.com"; // SMTP 服務器
$mail->Host = "smtp.qq.com"; // SMTP 服務器
$mail->Port = 465; // SMTP服務器的端口號
$mail->Username = "xxxx@qq.com"; // SMTP服務器用戶名
$mail->Password = "xxxx"; // SMTP服務器密碼
$mail->SetFrom('xxxxx@qq.com', '發送人名稱');
$replyEmail = ''; //留空則為發件人EMAIL
$replyName = ''; //回復名稱(留空則為發件人名稱)
$mail->AddReplyTo($replyEmail, $replyName);
$mail->Subject = $subject;
$mail->MsgHTML($body);
$mail->AddAddress($to, $name);
if (is_array($attachment)) { // 添加附件
foreach ($attachment as $file) {
is_file($file) && $mail->AddAttachment($file);
}
}
return $mail->Send() ? true : true;//$mail->ErrorInfo;
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。