Я пытаюсь использовать PHPMailer с XAMPP на локальном сервере, и я использую SMTP Gmail, однако SMTP не будет подключаться. Может кто-нибудь помочь мне найти проблему? Я использую тот же пример Gmail, который есть у них на Github. Эта проблема была решена, когда я изменил SMTPOptions, как сказано в руководстве по устранению неполадок, однако, если это небезопасный параметр, я хотел бы сделать это правильным образом.
Это сообщение об ошибке, отправленное почтовой программой. php выводов, и я попытался устранить неполадки с их Github, но не могу найти решение:
2020-03-21 18:04:57 SERVER -> CLIENT: 220 smtp.gmail.com ESMTP f2sm448312ljn.101 - gsmtp
2020-03-21 18:04:57 CLIENT -> SERVER: EHLO 127.0.0.1
2020-03-21 18:04:57 SERVER -> CLIENT: 250-smtp.gmail.com at your service, [2a02:aa7:460f:7e0c:c0fb:2279:35d7:a54a]250-SIZE 35882577250-8BITMIME250-STARTTLS250-ENHANCEDSTATUSCODES250-PIPELINING250 SMTPUTF8
2020-03-21 18:04:57 CLIENT -> SERVER: STARTTLS
2020-03-21 18:04:58 SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
SMTP Error: Could not connect to SMTP host.
2020-03-21 18:04:58 CLIENT -> SERVER: QUIT
2020-03-21 18:04:58 SERVER -> CLIENT:
2020-03-21 18:04:58 SMTP ERROR: QUIT command failed:
SMTP Error: Could not connect to SMTP host.
Message could not be sent. Mailer Error: SMTP Error: Could not connect to SMTP host.
My settings:
PHP.ini:
SMTP=smtp.gmail.com
smtp_port=587
Sendmail.ini:
smtp_server=smtp.gmail.com
smtp_port=587
smtp_ssl=auto
auth_username=EMAIL
auth_password=PASSWORD
My Mailer. php:
<?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\SMTP;
use PHPMailer\PHPMailer\Exception;
// Load Composer's autoloader
require 'PHPMailer/vendor/autoload.php';
// Instantiation and passing `true` enables exceptions
$mail = new PHPMailer(true);
try {
//Server settings
$mail->SMTPDebug = SMTP::DEBUG_SERVER; // Enable verbose debug output
$mail->isSMTP(); // Send using SMTP
$mail->Host = 'smtp.gmail.com'; // Set the SMTP server to send through
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'EMAIL'; // SMTP username
$mail->Password = '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::ENCRYPTION_SMTPS` above
//Recipients
$mail->setFrom('EMAIL', 'NAME');
$mail->addAddress('EMAIL', '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->send();
echo 'Message has been sent';
} catch (Exception $e) {
echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}";
}
?>