Yii2 Mailer extension for SendGrid with batch mailing support.
A possible alternative to this component is the following combination
$ composer require marketforce-info/yii2-sendgrid
Then configure your mailer
component in your main-local.php
(advanced) or web.php
(basic) like so:
'mailer' => [
'class' => \MarketforceInfo\SendGrid\Mailer::class,
'viewPath' => '@common/mail',
// send all mails to a file by default. You have to set
// 'useFileTransport' to false and configure a transport
// for the mailer to send real emails.
'useFileTransport' => false,
'apiKey' => '[YOUR_SENDGRID_API_KEY]',
],
Do not forget to replace apiKey
with your SendGrid API key. It must have permissions to send emails.
$mailer = Yii::$app->mailer;
$message = $mailer->compose()
->setTo('[email protected]')
->setFrom(['[email protected]' => 'Alerts'])
->setReplyTo('[email protected]')
->setSubject('Example Email Subject')
->setTextBody('Example email body.')
->send();
$user = \common\models\User::find()->select(['id', 'username', 'email'])->where(['id' => 1])->one();
$mailer = Yii::$app->mailer;
$message = $mailer->compose()
->setTo([$user->email => $user->username])
->setFrom(['[email protected]' => 'Alerts'])
->setReplyTo('[email protected]')
->setSubject('Example Email Subject')
->setHtmlBody('Dear -username-,<br><br>Example email HTML body.')
->setTextBody('Dear -username-,\n\nExample email text body.')
->addSubstitution('-username-', $user->username)
->send();
if ($message === true) {
echo 'Success!';
echo '<pre>' . print_r($mailer->getRawResponses(), true) . '</pre>';
} else {
echo 'Error!<br>';
echo '<pre>' . print_r($mailer->getErrors(), true) . '</pre>';
}
If you want to send to multiple recipients, you need to use the below method to batch send.
$mailer = Yii::$app->mailer;
foreach (User::find()->select(['id', 'username', 'email'])->batch(500) as $users) {
$message = $mailer->compose()
->setFrom(['[email protected]' => 'Alerts'])
->setReplyTo('[email protected]')
->setSubject('Hey -username-, Example Email Subject')
->setHtmlBody('Dear -username-,<br><br>Example email HTML body.')
->setTextBody('Dear -username-,\n\nExample email text body.')
foreach ( $users as $user )
{
// A Personalization Object Helper would be nice here...
$personalization = [
'to' => [$user->email => $user->username], // or just `[email protected]`
//'cc' => '[email protected]',
//'bcc' => '[email protected]',
//'subject' => 'Hey -username-, Custom message for you!',
//'headers' => [
// 'X-Track-RecipId' => $user->id,
//],
'substitutions' => [
'-username-' => $user->username,
],
//'custom_args' => [
// 'user_id' => $user->id,
// 'type' => 'marketing',
//],
//'send_at' => $sendTime,
];
$message->addPersonalization($personalization);
}
$result = $message->send();
}
if ($result === true) {
echo 'Success!';
echo '<pre>' . print_r($mailer->getRawResponses(), true) . '</pre>';
} else {
echo 'Error!<br>';
echo '<pre>' . print_r($mailer->getErrors(), true) . '</pre>';
}
NOTE: SendGrid supports a max of 1,000 recipients. This is a total of the to, bcc, and cc addresses. I recommend using 500
for the batch size. This should be large enough to process thousands of emails efficiently without risking getting errors by accidentally breaking the 1,000 recipients rule. If you are not using any bcc or cc addresses, you could raise the batch number a little higher. Theoretically, you should be able to do 1,000 but I would probably max at 950 to leave some wiggle room.
addSection()
- There is currently an issue with the SendGrid API where sections are not working.setSendAt()
- There is currently an issue with the SendGrid API where usingsend_at
where the time shows the queued time not the actual time that the email was sent.setReplyTo()
- There is currently an issue with the SendGrid PHP API where the ReplyTo address only accepts the email address as a string. So you can't set a name.
There are a few things left that I didn't get to:
- ASM
- mail_settings
- tracking_settings
Contributions gratefully accepted in the form issues or PRs.
This extension was originally created by https://www.github.com/wadeshuler