Swiftmailer in Yii2 - Unable to send email
问题 I'm using basic Yii2 template and Swiftmailer to send email.. Here is my code for config/web.php : 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', // send all mails to a file by default. You have to set // 'useFileTransport' to false and configure a transport // for the mailer to send real emails. 'useFileTransport'=>'false', 'transport' => [ 'class' => 'Swift_SmtpTransport', 'host' => 'smtp.gmail.com', 'username' => 'myemail@gmail.com', 'password' => 'password', 'port' => '587',