在 yii2 中使用 swift mailer 的默认邮件无法接收任何邮件
我尝试使用 swift mailer 的默认邮件发送邮件,但没有收到任何邮件。
这是我的配置
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@common/mail/views',
'useFileTransport' => true,
'enableSwiftMailerLogging' => true,
]
,这是发送邮件的代码
\Yii::$app->mailer->compose('deleteMailTemplate',[
'name' => "Peter",
])
->setFrom("[email protected]")
->setTo("[email protected]")
->setSubject('Delete reminder mail')
->send();
我不知道问题是什么,请帮忙提前致谢。
I tried to mail using default mail of swift mailer but didn't receive any mail.
here is my config
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@common/mail/views',
'useFileTransport' => true,
'enableSwiftMailerLogging' => true,
]
and here is code for send mail
\Yii::$app->mailer->compose('deleteMailTemplate',[
'name' => "Peter",
])
->setFrom("[email protected]")
->setTo("[email protected]")
->setSubject('Delete reminder mail')
->send();
I don't know what's the issue please help thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您的电子邮件配置有问题。请使用以下代码并检查我希望这会起作用。
I think you have issue in email configuration. Please used following code and check i hope this will work.