本文介绍了在 yii2 中使用 sendgrid mailer 功能发送邮件的步骤?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在 Yii 2 中使用 sendgrid 获取邮件,但似乎不起作用.谁能告诉我在 yii2 中使用 sendgrid 的步骤.
I am trying to get the mail using sendgrid in Yii 2 but it doesn't seem to work.Can any one tell me steps of sendgrid in yii2 .
推荐答案
您可以使用 https://github.com/bryglen/yii2-sendgrid#yii-2-bryglen-sendgrid
安装:
composer require --prefer-dist bryglen/yii2-sendgrid "*"
common/config/main.php
common/config/main.php
'components' => [
...
'sendGrid' => [
'class' => 'bryglen\sendgrid\Mailer',
'username' => 'your_user_name',
'password' => 'your password here',
//'viewPath' => '@app/views/mail', // your view path here
],
...
],
要发送电子邮件,您可以使用以下代码:
To send an email, you may use the following code:
$sendGrid = Yii::$app->sendGrid;
$message = $sendGrid->compose('contact/html', ['contactForm' => $form]);
$message->setFrom('[email protected]')
->setTo($form->email)
->setSubject($form->subject)
->send($sendGrid);
这篇关于在 yii2 中使用 sendgrid mailer 功能发送邮件的步骤?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!