yii2-swiftmailer icon indicating copy to clipboard operation
yii2-swiftmailer copied to clipboard

Yii 2 mailer dont send mail and dont display errors

Open nnpa opened this issue 3 years ago • 0 comments

config 'components' => [ 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', 'transport' => [ 'class' => 'Swift_SmtpTransport', 'host' => 'smtp.send-box.ru', 'username' => '[email protected]', 'password' => 'password', 'port' => '587', 'encryption' => 'tls', ], ],

    Yii::$app->mailer->compose()
    ->setFrom('[email protected]')
    ->setTo('[email protected]')
    ->setSubject('Тема сообщения')
    ->setTextBody('Текст сообщения')
    ->setHtmlBody('<b>текст сообщения в формате HTML</b>')
    ->send();

code return true witout errors (when config has errors) mail not send Why?

nnpa avatar Oct 07 '22 20:10 nnpa