即使未启用加密,PHPMailer也会使用TLS发送

时间:2016-09-01 21:13:11

标签: php phpmailer

我正在尝试使用没有TLS的PHPMailer发送电子邮件,但即使我没有启用它,PHPMailer仍会尝试使用TLS发送电子邮件:

include_once("PHPMailer-master\PHPMailerAutoload.php");

$To = 'some@site.com';
$Subject = 'Topic';
$Message = 'msg test';

$Host = 'site.com.br';
$Username = 'contact@site.com.br';
$Password = 'pass';
$Port = "587";

$mail = new PHPMailer();
$body = $Message;
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = $Host; // SMTP server
$mail->SMTPDebug = 1; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // enable SMTP authentication
//$mail->SMTPSecure = 'ssl'; //or tsl -> switched off
$mail->Port = $Port; // set the SMTP port for the service server
$mail->Username = $Username; // account username
$mail->Password = $Password; // account password

$mail->SetFrom($Username);
$mail->Subject = $Subject;
$mail->MsgHTML($Message);
$mail->AddAddress($To);

if(!$mail->Send()) {
    $mensagemRetorno = 'Error: '. print($mail->ErrorInfo);
    echo $mensagemRetorno;
} else {
    $mensagemRetorno = 'E-mail sent!';
    echo $mensagemRetorno;
}

发送电子邮件后,我收到了这条消息:

2016-09-01 21:08:55 CLIENT -> SERVER: EHLO www.johnmendes.com.br
2016-09-01 21:08:55 CLIENT -> SERVER: STARTTLS
2016-09-01 21:08:55 SMTP ERROR: STARTTLS command failed: 454 TLS not available due to temporary reason
2016-09-01 21:08:55 SMTP Error: Could not connect to SMTP host.
2016-09-01 21:08:55 CLIENT -> SERVER: QUIT
2016-09-01 21:08:55 SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
Erro ao enviar e-mail: 1

服务器不支持ssl或tls。

有什么想法吗?

1 个答案:

答案 0 :(得分:22)

这在PHPMailer文档中有所介绍。 PHPMailer做机会主义TLS - 如果服务器宣传它可以做TLS(你的那个),它会自动使用它而不需要你。你可以禁用它:

$mail->SMTPSecure = false;
$mail->SMTPAutoTLS = false;

从错误消息中,您的托管服务提供商看起来这是一个临时问题。如果设置$mail->SMTPDebug = 2;,您会看到更多信息。

我可以看到您的代码基于一个过时的示例,因此请确保您拥有the latest version of PHPMailer并将代码基于随其提供的示例。

相关问题