如何让这项工作正常?
我正在尝试使用我的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";
&GT;
我尝试使用与Gmail不同的不同SMTP,并且工作得很好。
那可能是什么问题?