How to use the swiftMailer in Yii2

前端 未结 6 566
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 18:01

I can\'t finally understand how to use the swiftMailer extension in Yii2. Judging by that on this subject I didn\'t find questions, the task is trivial, but up to the end I

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-07 18:06

    Actually, you have to use config key mailer instead of mail.

    'components' => [
    ...
        'mailer' => [
            'class' => 'yii\swiftmailer\Mailer',
            'transport' => [
                'class' => 'Swift_SmtpTransport',
                'host' => 'localhost',
                'username' => 'username',
                'password' => 'password',
                'port' => '587',
                'encryption' => 'tls',
            ],
        ],
    ...
    ],
    

提交回复
热议问题