Не пойму в чем дело, при попытке отправить письмо в Yii2 ошибка: "Swift_TransportException"

При попытке отправить письмо, ошибка, однако требование установить пароль для внешних приложений выполняю, порты пробовал менять, тоже не помогает не найду в чем подвох:

"Swift_TransportException Failed to authenticate on SMTP server with username "<[email protected]" using 3 possible authenticators. Authenticator LOGIN returned Expected response code 235 but got code "535", with message "535 5.7.0 NEOBHODIM parol prilozheniya https://help.mail.ru/mail/security/protection/external / Application password is REQUIRED ". Authenticator PLAIN returned Expected response code 235 but got code "535", with message "535 5.7.0 NEOBHODIM parol prilozheniya https://help.mail.ru/mail/security/protection/external / Application password is REQUIRED ". Authenticator XOAUTH2 returned Expected response code 235 but got code "535", with message "535 5.7.0 NEOBHODIM parol prilozheniya https://help.mail.ru/mail/security/protection/external / Application password is REQUIRED"

   ``` 'mailer' => [ 
                'class' => 'yii\swiftmailer\Mailer',
                'viewPath' => '@app/mail',
                 'transport' => [
                      'class' => 'Swift_SmtpTransport',
                      'host' => 'smtp.mail.ru',
                      'username' => '<[email protected]',
                      'password' => '<BtUUDCrefudvdhu5w2CF>',
                      'port' => 465,
                      'encryption' => 'ssl',
                  ],
     ```
                ```  'useFileTransport' => false,
                ]
```



    Файл params.php:
    
    
    ``` return [
        'adminEmail' => '[email protected]',
        'user.passwordResetTokenExpire' => 3600,
        'supportEmail' => '[email protected]'
    ];
    ```

Ответы (0 шт):