0

我有使用 SMTP 连接发送电子邮件的 php 代码;两周前它工作得很好。但突然停止工作。不知道是什么问题。

SMTP -> 错误:无法连接到服务器:连接尝试失败,因为连接方在一段时间后没有正确响应,或者已建立的连接失败,因为连接的主机没有响应。(10060) SMTP 错误:无法连接到 SMTP 主机。

//start  mailing function
require_once('PHPMailer_v5.1\class.phpmailer.php');
$mail  = new PHPMailer();   
$mail->IsSMTP();
//MAIL config
$mail->SMTPAuth   = true;
$mail->SMTPDebug  = 1;
$mail->Host       = "localhost";      // set as the SMTP server
$mail->Port       = 25;
$mail->Username   = "myemail@web.com";  // localhost email username
$mail->Password   = "XXXX";            
//End mail config
$mail->From       = $sender_email;
$mail->FromName   = $sender_user_name;
$mail->Subject    = $subject;
$mail->MsgHTML($body);
$mail->AddAddress($to,$to_name);
$mail->IsHTML(true); // send as HTML
if(!$mail->Send()) {//to see if we return a message or a value bolean
    echo "<p>Confirmation Mail delivery failed due to invalid email specified !</p>";
} 
4

1 回答 1

0

这是由于

$mail->Host       = "localhost";      // set as the SMTP server

我把它改成

$mail->Host       = "mail.web.com";      // set as the SMTP server

现在可以了!

于 2013-02-06T06:08:30.650 回答