您好我的电子邮件创建有问题。 页脚重复:
<div class="footer">With kind regards, <?= Yii::$app->name ?> team</div>
Printing two times the same text
我在web.app中的设置:
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@app/mail/',
'useFileTransport' => false,//set this property to false to send mails to real email addresses
//comment the following array to send mail using php's mail function
'transport' => [
'class' => 'Swift_SmtpTransport',
'host' => 'smtp.gmail.com',
'username' => 'myemail@gmail.com',
'password' => 'mypassword',
'port' => '587',
'encryption' => 'tls',
],
],
以及我如何发送电子邮件:
$content='test text';
\Yii::$app->mailer->compose('@app/mail/layouts/html', ['content'=>$content])
->setFrom('myemail@gmail.com')
->setTo('emailto@gmail.com')
->setSubject('test')
->send();