Open nnpa opened 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', ], ],
'components'
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?
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', ], ],code return true witout errors (when config has errors) mail not send Why?