yii2将我发送的每一封邮件记录为.eml文件,并存储到frontend\runtime\debug\mail中。这个文件夹变得很重,占用了我所有的服务器空间。有什么办法阻止它吗?我用的是迅捷邮递员。
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@common/mail',
'transport' => [
'class' => 'Swift_SmtpTransport',
'host' => 'smtp.gmail.com',
'username' => *******,
'password' => *****,
'port' => '465',
'encryption' => 'ssl',
],
],
最佳答案
这是因为您已经打开了yii2调试模块。您需要将其从生产服务器中删除—它设计为仅用于非生产环境进行测试和调试。