我使用下面的代码在yii2中发送电子邮件:
在config / main.php
中return [
'components' => [
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@common/mail'
],
],
];
在我的控制器中:
Yii::$app->mailer->compose('contact', [
'name' => 'Dan Drown',
'address' => '111 Highway 50, CA'])
->setFrom('dandrown@gmail.com')
->setTo('dandrown@gmail.com')
->setSubject('Re: Hello word')
->send();
但我没有收到任何邮件dandrown@gmail.com。我不知道为什么?有什么问题?
答案 0 :(得分:0)
以下是正确配置邮件程序的示例:
$(window).load(function() {
// Animate loader off screen
$("#container").show();
$(".se-pre-con").fadeOut();
});
您可以在此处阅读更多内容:http://www.yiiframework.com/doc-2.0/yii-swiftmailer-mailer.html