相關(guān)關(guān)鍵詞
關(guān)于我們
最新文章
解決Yii2郵件發(fā)送結(jié)果返回成功,但接收不到郵件的問題
前言
本文主要介紹的是關(guān)于解決Yii2郵件發(fā)送返回成功但接收不到郵件問題的相關(guān)內(nèi)容,分享出來供大家參考學習,下面來看看詳細的介紹:
剛剛用了一下yii郵件發(fā)送功能,雖然結(jié)果返回成功,但接收不到郵件。
配置文件代碼如下:
'components' => [ 'db' => [ 'class' => 'yii\db\Connection', 'dsn' => 'mysql:host=localhost;dbname=yiidemo', 'username' => 'root', 'password' => 'root', 'charset' => 'utf8', ], 'mailer' => [ 'class' => 'yii\swiftmailer\Mailer', 'viewPath' => '@common/mail', // 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' => true, 'transport' => [ 'class' => 'Swift_SmtpTransport', 'host' => 'smtp.qq.com', 'username' => '********@qq.com', 'password' => '********', 'port' => '465', 'encryption' => 'ssl', ], ], ],