Swift_TransportException Не удалось выполнить аутентификацию на SMTP-сервере с именем пользователя «example@gmail.com» с использованием 2 возможных аутентификаторов - PullRequest
0 голосов
/ 08 февраля 2019

Я использую функцию почтового ящика yii2, и я столкнулся с проблемой, ошибка, как показано ниже

 Swift_TransportException
    Failed to authenticate on SMTP server with username "example@gmail.com" using 2 possible authenticators. Authenticator LOGIN returned Swift_TransportException: Expected response code 235 but got code "535", with message "535 Incorrect authentication data

, вот моя конфигурация для почтового сервера

'mailer' => [
            'class' => 'yii\swiftmailer\Mailer',
            'viewPath' => '@common/mail',

            'transport' => [
                'class' => 'Swift_SmtpTransport',
                'host' => 'smtp.gmail.com',  // e.g. smtp.mandrillapp.com or smtp.gmail.com
                'username' => 'example@gmail.com', //ses-smtp-user.20180221-103827  username: administrator
                'password' => "example123#",
                'port' => '587', // Port 25 is a very common port too 25, 465 or 587
                'encryption' => 'tls', // It is often used, check your provider or mail server specs
                'streamOptions' => [
                    'ssl' => [
                        'verify_peer' => false,
                        'verify_peer_name' => false,

                    ]
                ],
            ],
            // send all mails to a file by default. You have to set
            // 'useFileTransport' to false and configure a transport
            // for the mailer to send real emails.
            'useFileTransport' => false,
        ],

, если кто-нибудь знает, в чем проблемапожалуйста, дайте мне знать, что я не понимаю, где ошибка, спасибо!

...