Я пытаюсь реализовать почтовую программу на моем PHP веб-сайте.
Использование PHPMailer, установленного с Composer. Я на Ubuntu 18.04 LTS на Linode VPS.
Загрузка страницы занимает очень много времени, затем выводится исключение.
test. php
<?
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;
require 'vendor/phpmailer/phpmailer/src/Exception.php';
require 'vendor/phpmailer/phpmailer/src/PHPMailer.php';
require 'vendor/phpmailer/phpmailer/src/SMTP.php';
require 'vendor/autoload.php';
$mail = new PHPMailer(true);
try {
//Server settings
$mail->SMTPDebug = SMTP::DEBUG_SERVER; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->Host = 'mail.thenetwork.com'; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'service@thenetwork.com'; // SMTP username
$mail->Password = '********'; // SMTP password
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS; // Enable TLS encryption; `PHPMailer::ENCRYPTION_SMTPS` encouraged
$mail->Port = 587; // TCP port to connect to, use 465 for `PHPMailer::ENCRYPTI$
//Recipients
$mail->setFrom('service@thenetwork.com', 'The PC Repair Network');
$mail->addAddress('myemail@gmail.com', ''); // Add a recipient
$mail->addReplyTo('biz@thenetwork.com', '');
// Attachments
// 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 "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
?>
Исключение
2020-03-16 05:13:59 SMTP ERROR: Failed to connect to server: Connection timed out (110)
SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
Message could not be sent. Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
SMTP-сервер
mail.thenetwork.com forwards successfully to
arrow.mxrouting.net
SMTP Ports: 465 (SSL), 587 (STARTTLS), 25 (Non Encrypted)
Force SSL: True
Что я пробовал:
Разрешение исходящих соединений через порт 587 с sudo ufw allow out 587
Тестирование SMTP-сервера с https://mxtoolbox.com/, которое успешно возвращается
Тестирование SMTP-сервера с Windows - на основе "SMTP Diag Tool", который успешно отправил электронное письмо
Тестирование с te lnet с моего сервера, который висит на Trying **ipaddress**...
У меня есть чувство, что то, что заставляет его не работать, также заставляет мою команду te 1025 не принимать решения
Редактировать
Я открыл заявку в службу поддержки Linode после того, как узнал, что у них есть политика закрытия портов 25, 465 и 587 для новых клиентов до тех пор, пока не будет обеспечено соответствие CAN-SPAM.