首頁 >後端開發 >php教程 >為什麼我無法使用 PHPMailer 透過 Gmail 的 SMTP 伺服器傳送電子郵件?

為什麼我無法使用 PHPMailer 透過 Gmail 的 SMTP 伺服器傳送電子郵件?

Patricia Arquette
Patricia Arquette原創
2024-12-18 07:53:10725瀏覽

Why Can't I Send Emails via Gmail's SMTP Server with PHPMailer?

無法使用PHPMailer 透過Gmail 的SMTP 伺服器傳送電子郵件:解決SMTP AUTH 問題

嘗試利用Gmail 的SMTP 問題

嘗試利用Gmail 的SMTP 問題
$mail = new PHPMailer(); // New PHPMailer object
$mail->IsSMTP(); // Enable SMTP protocol
$mail->SMTPDebug = 1; // For debugging (log errors and messages)
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->SMTPSecure = 'ssl'; // Utilize Secure Socket Layer (SSL) for secure transmission (required for Gmail)
$mail->Host = "smtp.gmail.com";
$mail->Port = 465; // Or 587 depending on server settings
$mail->IsHTML(true); // Allow HTML-formatted emails
$mail->Username = "johndoe@gmail.com"; // Your Gmail username
$mail->Password = "mysecretpassword"; // Your Gmail password
$mail->SetFrom("sender@gmail.com"); // Set sender address
$mail->Subject = "Test Email";
$mail->Body = "Hello from PHPMailer!";
$mail->AddAddress("recipient@gmail.com"); // Add recipient address

if (!$mail->Send()) {
    echo "Mailer Error: " . $mail->ErrorInfo;
} else {
    echo "Email sent successfully!";
}

嘗試利用Gmail 的SMTP 問題

    嘗試利用Gmail 的SMTP 問題。郵件時PHPMailer,您可能會遇到錯誤「在連接埠587 上提交訊息需要SMTP AUTH」。此錯誤表示在發送電子郵件之前需要進行身份驗證。以下是解決此問題的方法:
  • 要修正此問題,需要以下修改:
  • 主要注意事項:
確保您已為相關Gmail 帳戶停用兩步驟驗證。 驗證您的SMTP 伺服器支援 SSL 或 TLS 連線。 如果問題仍然存在,請嘗試將「SMTPSecure」設定調整為「tls」而不是「ssl」。

以上是為什麼我無法使用 PHPMailer 透過 Gmail 的 SMTP 伺服器傳送電子郵件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn