我正在使用PHP中的Gmail SMTP发送电子邮件。我还在php.ini中启用了OPENSSL。但是我收到了这个错误。
SMTP - >错误:无法连接到服务器:连接尝试 失败,因为关联方在a之后没有正确回应 一段时间,或建立的连接失败,因为连接 主持人没有回复。 (10060)
以下来自地址 失败:mhtkumar46@gmail.com:没有连接就调用了Mail() 发送邮件失败。
这是我的代码。
<?php
error_reporting(E_ALL);
require("PHPMailer_5.2.4/class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->SMTPDebug = 2;
$mail->Debugoutput = 'html';
$mail->From = "mhtkumar46@gmail.com";
$mail->FromName = "Mohit";
$mail->Host = "smtp.gmail.com"; // specif smtp server
$mail->SMTPSecure= "tls"; // Used instead of TLS when only POP mail is selected
$mail->Port = 587; // Used instead of 587 when only POP mail is selected
$mail->SMTPAuth = true;
$mail->Username = "mhtkumar46@gmail.com"; // SMTP username
$mail->Password = "*******"; // SMTP password
$mail->AddAddress("mohitkumarsingla60@gmail.com", "Singla"); //replace myname and mypassword to yours
$mail->AddReplyTo("mhtkumar46@gmail.com", "Mohit");
$mail->WordWrap = 50; // set word wrap
//$mail->AddAttachment("c:\\temp\\js-bak.sql"); // add attachments
//$mail->AddAttachment("c:/temp/11-10-00.zip");
$mail->IsHTML(true); // set email format to HTML
$mail->Subject = 'test';
$mail->Body = 'test';
if($mail->Send()) {echo "Send mail successfully";}
else {echo "Send mail fail";}
?>
我无法找到解决方案。请帮帮我。