我的 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 Apache 上完美运行。但是,在 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。
有任何想法吗?