0
Я использую последнюю версию phpmailer. Я использую следующий код:Ошибка SMTP-соединения - Ошибка PHPMailer на Localhost в phpmailer
<?php
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
//$mail->SMTPDebug = 3; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.gmail.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = '[email protected]'; // SMTP username
$mail->Password = 'simplePass'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
$mail->SMTPDebug=2;
$mail->setFrom('[email protected]', 'Mailer');
$mail->addAddress('[email protected]bd', 'Joe User'); // Add a recipient
//$mail->addAddress('[email protected]'); // Name is optional
//$mail->addReplyTo('[email protected]', 'Information');
//$mail->addCC('[email protected]');
//$mail->addBCC('[email protected]');
//$mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments
//$mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name
$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';
if(!$mail->send()) {
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent';
}
?>
Но когда я запускаю этот код, который я даю следующий вывод:
2017-02-09 11:20:34 SERVER -> CLIENT: 220 smtp.gmail.com ESMTP w70sm17914821wrc.47 - gsmtp
2017-02-09 11:20:34 CLIENT -> SERVER: EHLO localhost
2017-02-09 11:20:34 SERVER -> CLIENT: 250-smtp.gmail.com at your service, [50.118.143.87] 250-SIZE 35882577 250-8BITMIME 250-STARTTLS 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-CHU*KING 250 SMTPUTF8
2017-02-09 11:20:34 CLIENT -> SERVER: STARTTLS
2017-02-09 11:20:37 SERVER -> CLIENT: 220 2.0.0 Ready to start TLS
2017-02-09 11:20:38 CLIENT -> SERVER: EHLO localhost
2017-02-09 11:20:39 SERVER -> CLIENT: 250-smtp.gmail.com at your service, [50.118.143.87] 250-SIZE 35882577 250-8BITMIME 250-AUTH LOGIN PLAIN XOAUTH2 PLAIN-CLIENTTOKEN OAUTHBEARER XOAUTH 250-ENHANCEDSTATUSCODES 250-PIPELINING 250-CHUNKING 250 SMTPUTF8
2017-02-09 11:20:39 CLIENT -> SERVER: AUTH LOGIN
2017-02-09 11:20:39 SERVER -> CLIENT: 334 VXNlcm5hbWU6
2017-02-09 11:20:39 CLIENT -> SERVER: xxx==
2017-02-09 11:20:40 SERVER -> CLIENT: 334 UGFzc3dvcmQ6
2017-02-09 11:20:40 CLIENT -> SERVER: xxx==
2017-02-09 11:20:40 SERVER -> CLIENT: 535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCredentials w70sm17914821wrc.47 - gsmtp
2017-02-09 11:20:40 SMTP ERROR: Password command failed: 535-5.7.8 Username and Password not accepted. Learn more at 535 5.7.8 https://support.google.com/mail/?p=BadCredentials w70sm17914821wrc.47 - gsmtp
2017-02-09 11:20:40 SMTP Error: Could not authenticate.
2017-02-09 11:20:40 CLIENT -> SERVER: QUIT
2017-02-09 11:20:41 SERVER -> CLIENT: 221 2.0.0 closing connection w70sm17914821wrc.47 - gsmtp
2017-02-09 11:20:41 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
И электронная почта не отправляется. Как я могу использовать phpmailer для отправки электронной почты?
Если вы не включили приложение третью часть в Gmail затем следуйте по ссылке: https://touchmail.uservoice.com/knowledgebase/articles/ 560391-enable-third-party-apps-in-gmail –
Я включил его. –
Вы считали, что следуете двум ссылкам, упомянутым в выводе? – Synchro