Steps to send mail using sendgrid mailer function in yii2?

吃可爱长大的小学妹 提交于 2019-12-11 05:16:33

问题


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 .


回答1:


You can use https://github.com/bryglen/yii2-sendgrid#yii-2-bryglen-sendgrid

Installation:

composer require --prefer-dist bryglen/yii2-sendgrid "*"

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('from@domain.com')
    ->setTo($form->email)
    ->setSubject($form->subject)
    ->send($sendGrid);


来源:https://stackoverflow.com/questions/39373201/steps-to-send-mail-using-sendgrid-mailer-function-in-yii2

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!