如何让这项工作做好?
我正在尝试使用我的 Gmail 帐户从我的网站发送电子邮件,我使用的是 SMTP SSL,用户名和密码都可以,我可以随时从浏览器登录我的帐户。我用谷歌搜索了这个问题,但没有任何帮助。
首先,我曾经收到一条消息说“SMTP 错误:无法验证”
我尝试使用不同的端口,如 25、587,从 SSL 切换到 TLS,但这并没有解决问题。
所以我的问题是如何正确地“验证”(如消息所说)Gmail?
有什么帮助吗?
下面的脚本返回一个空响应!
<?php
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->SMTPSecure = "SSL";
$mail->Host = "smtp.gmail.com"; // specify main and backup server
$mail->Port = 465;
$mail->Username = "username@gmail.com"; // SMTP username
$mail->Password = "password"; // SMTP password
$mail->From = "username@gmail.com";
$mail->FromName = "username";
$mail->AddAddress("account@gmail.com", "account name");
$mail->WordWrap = 50; // set word wrap to 50 characters
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = "Here is the subject";
$mail->Body = "This is the HTML message body <b>in bold!</b>";
$mail->AltBody = "This is the body in plain text for non-HTML mail clients";
if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
?>
我尝试使用与 Gmail 不同的 SMTP,并且工作得很好。
那可能是什么问题?