$account="xxx@gmail.com";
$password="";
$to="xxx@hotmail.com";
$from="xxx@gmail.com";
$from_name="Vishal G.V";
$msg="This is a bold text."; // HTML message
$subject="HTML message";
/End Config/
include("phpmailer/class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->CharSet = 'UTF-8';
$mail->Host = "smtp.gmail.com";
$mail->SMTPAuth= true;
$mail->Port = 587; // Or 465
$mail->Username= $account;
$mail->Password= $password;
$mail->SMTPSecure = 'tls'; // or 'ssl'
$mail->From = $from;
$mail->FromName= $from_name;
$mail->isHTML(true);
$mail->Subject = $subject;
$mail->Body = $msg;
$mail->addAddress($to);
if(!$mail->send()){
echo "Mailer Error: " . $mail->ErrorInfo;
}else{
echo "E-Mail has been sent";
}
Mailer Error: SMTP Error: Could not authenticate.
有沒人遇到類似情況?
samit,有成功連線出去了,只是伺服器驗證沒過,本機的工作已經完成囉~
Gmail的話要看看是不是有強驗證,若是有的話要建立應用程式密碼
只是伺服器驗證沒過 即係伺服器管理員處理, 對?
我看過Gmail 有強驗証, 如何建立?
1:
2:
3:
解決了,
我是跟進https://digishot.keenchief.com/tw/2928511342 就成功了
哈.. 謝謝你指正
看來您的phpmailer還是用舊寫法
請留意phpmailer舊版漏洞
Ref. https://www.nccst.nat.gov.tw/VulnerabilityDetail?lang=zh&seq=1048
新的已改成引用
require_once( dirname(FILE)."/lib/PHPMailerAutoload.php" );
wow..感謝萬分