EOF перехвачен при проверке подключения при использовании phpmailer - PullRequest
0 голосов
/ 02 января 2019

У меня возникла проблема при попытке использовать phpmailer на моем локальном хосте.

Я пытался как минимум 2 часа подключиться к SMTP-серверу ionos 1 & 1, используя phpmailer.

<<?php 
// Import PHPMailer classes into the global namespace
// These must be at the top of your script, not inside a function
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;


require 'vendor/autoload.php';

$mail = new PHPMailer(true);         //Passing `true` enables exceptions
try {
    //Server settings
    $mail->SMTPDebug = 4;                                 // Enable verbose debug output
    $mail->isSMTP();                                      // Set mailer to use SMTP
    $mail->Host = 'smtp.ionos.fr';  // Specify main and backup SMTP servers
    $mail->SMTPAuth = true;                               // Enable SMTP authentication
    $mail->Username = 'mymail@mymail.fr';                 // SMTP username
    $mail->Password = 'mypassword';                           // SMTP password
    $mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
    $mail->Port = 465;                                    // TCP port to connect to
//Recipients
$mail->setFrom('anyrecipient@test.fr', 'Test');
$mail->addAddress('realadress@gmail.com', 'Joe User');     // Add a recipient

//Content
$mail->isHTML(true);                                  // Set email format to HTML
$mail->Subject = 'Here is the subject';
$mail->Body    = 'This is the HTML message body <b>in bold!</b>';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients';



 $mail->send();
    echo 'Message has been sent';
} catch (Exception $e) {
    echo '<br>' . 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}
 ?>

На самом деле вот журналы ошибок:

<2019-01-02 09:02:04 Соединение: открытие в smtp.ionos.fr:465, timeout = 300, options = array () 2019-01-02 09:02:04 Соединение открыто 2019-01-02 09:02:15 SMTP INBOUND: "" 2019-01-02 09:02:15 SERVER -> КЛИЕНТ: 2019-01-02 09:02:15 ВНИМАНИЕ SMTP: EOF перехватывается при проверке подключено 2019-01-02 09:02:15 Соединение: закрыто SMTP Ошибка: не удалось подключиться к узлу SMTP. Ошибка SMTP: не удалось подключиться к узлу SMTP.

Сообщение не может быть отправлено. Ошибка почтовой программы: ошибка SMTP: не удалось подключиться к узлу SMTP.

Любой совет / подсказка?

Большое спасибо.

1 Ответ

0 голосов
/ 02 января 2019

Прочитайте документы и примеры.Вы используете SMTPSecure = 'tls' С Port = 465.Очень хорошо задокументировано, что эта комбинация не будет работать.Либо измените на ssl или порт 587, но не на оба.

...