我的Windows上有Apache w / php用于测试目的。 我的生产CentOS 6.4服务器上也有Apache w / php。
我可以使用PHPMailer在我的Windows服务器上完美地发送电子邮件。 但是,我无法在我的centos服务器上发送它。
这是我的代码:
require_once('phpmailer/class.phpmailer.php');
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPDebug = 1;
$mail->SMTPAuth = true;
$mail->Host = 'mail.example.com';
$mail->Port = 25;
$mail->Username = "mail-daemon@example.com";
$mail->Password = "secret";
$mail->SMTPSecure = 'tls';
$mail->SetFrom('mail-daemon@example.com', "$name");
$mail->Subject = "$subj";
$mail->Body = $body;
$mail->AddAddress("Support@example.com");
if(!$mail->Send()) {
$error = 'Mail error: '.$mail->ErrorInfo;
echo "We're sorry, however, an error has occurred. You may manually e-mail us at support@example.com.";
return false;
} else {
echo "Thanks! Your message was successfully sent.";
return true;
}
?>
再一次,它在我的Windows Apachhe上完美运行。 但是,CentOS上会出现以下错误。
SMTP -> ERROR: Failed to connect to server: Connection timed out (110) <br />The following From address failed: mail-daemon@example.com : Called Mail() without being connected
我测试了防火墙,我不认为这是问题所在。我甚至完全关闭它(用于测试),它仍然给我这个错误。
我在我的php上安装并启用了openssl。
有什么想法吗?
答案 0 :(得分:2)
我从消息中理解的是
如果我是你,我会按顺序尝试以下事项:
你应该陷入其中一个步骤,它应该有助于解决这个问题。