PHPMailer无法通过postfix

时间:2016-10-07 23:54:40

标签: phpmailer postfix

我已经在我的debian linux VPS中设置了postfix。 我可以使用postfix通过ssh console发送电子邮件。 我可以使用我的Gmail帐户使用PHPMailer发送电子邮件。 我可以在我的debian linux VPS帐户中收到电子邮件。

然后我想使用我的debian linux vps帐户通过Postfix使用PHPMailer发送电子邮件。但它在下面的日志中失败了。

SERVER -&gt; CLIENT: <br>
CLIENT -&gt; SERVER: EHLO android<br>
SERVER -&gt; CLIENT: <br>
SMTP ERROR: EHLO command failed: <br>
SMTP NOTICE: EOF caught while checking if connected<br>
SMTP Error: Could not connect to SMTP host.<br>

如何使用postfix使用PHPMailer发送电子邮件?我应该使用sasl吗?

我的sendmail.php

$mail = new PHPMailer;
$mail->isSMTP();
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
$mail->Subject = 'hello postfix phpmailer';
$mail->msgHTML(file_get_contents('contentemail.html'), dirname(__FILE__));
$mail->Host = 'yyyy.zzzz.com';
$mail->Username = "xxxx";
$mail->setFrom('xxxx@yyyy.zzzz.com', 'Ceramah Islam');
$mail->addReplyTo('xxxx@yyyy.zzzz.com', 'Ceramah Islam');
$mail->Password = "aaaaaa";
$mail->addAddress('bbbb@gmail.com', 'bbbb');
$mail->send();

1 个答案:

答案 0 :(得分:3)

我认为这个问题是由&#34; snakeoil&#34; Postfix附带的证书和私钥。诀窍是不验证它们。这是我发现的工作:

$mail = new PHPMailer;
$mail->isSMTP();
$mail->Host = "localhost";
$mail->Port = 25;
$mail->SMTPSecure = "tls";
$mail->SMTPOptions = array
  (
    'ssl' => array
    (
      'verify_peer' => false,
      'verify_peer_name' => false,
      'allow_self_signed' => true
    )
  );
$mail->setFrom('server@example.org', 'My Server');
$mail->addAddress('user@example.com', 'My User'); 
$mail->Subject = 'Message from PHPMailer and Postfix';
$mail->Body = 'Whatever';
if ($mail->send())
// SMTP message send success
{
// Put success logic here
} 
else
// SMTP message send failure
{
// Put failure logic here
}