'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'transport' => [
'class' => 'Swift_SmtpTransport',
'plugins' => [
[
'class' => 'Swift_Plugins_LoggerPlugin',
'constructArgs' => [new Swift_Plugins_Loggers_ArrayLogger], //thanks @germansokolov13
// it could also be any Swift_Plugins_Logger implementation (e.g., the EchoLogger)
],
],
'password' => 'password',
'port' => '465',
'encryption' => 'ssl',
],
],