PHP code example of shershennm / yii2-sendgrid
1. Go to this page and download the library: Download shershennm/yii2-sendgrid library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
shershennm / yii2-sendgrid example snippets
'components' => [
...
'sendGrid' => [
'class' => 'shershennm\sendgrid\Mailer',
'apiKey' => 'your api key',
]
...
],
$sendGrid = Yii::$app->sendGrid;
$message = $sendGrid->compose('contact/html', ['contactForm' => $form])
$message->setFrom('from@domain.com')
->setTo($form->email)
->setSubject($form->subject)
->send($sendGrid);
//also you can use sendgrid substitutions
->setSendGridSubstitution('template id', [
':var1' => 'var1value',
':var2' => 'var2value',
]);
php composer.phar