yiisoft / yii2-swiftmailer

Yii 2 swiftmailer extension.
http://www.yiiframework.com
BSD 3-Clause "New" or "Revised" License
116 stars 74 forks source link

Yii 2 mailer dont send mail and dont display errors #96

Open nnpa opened 2 years ago

nnpa commented 2 years ago

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

    Yii::$app->mailer->compose()
    ->setFrom('sendbox@jobgis.ru')
    ->setTo('jetananas@yandex.ru')
    ->setSubject('Тема сообщения')
    ->setTextBody('Текст сообщения')
    ->setHtmlBody('<b>текст сообщения в формате HTML</b>')
    ->send();

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