Yii::$container->set('mailer', [
'class' => 'yii\swiftmailer\Mailer',
'useFileTransport' => false,
'transport' =>
[
'class' => 'Swift_SmtpTransport',
'host' => $smtp_host,
'username' => $smtp_login,
'password' => $smtp_password,
'port' => $smtp_port,
'encryption' => 'ssl',
],
]);