Package Data | |
---|---|
Maintainer Username: | s-ichikawa |
Maintainer Contact: | ichikawa.shingo.0829@gmail.com (shingo.ichikawa) |
Package Create Date: | 2016-02-22 |
Package Last Update: | 2024-12-18 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-22 03:19:00 |
Package Statistics | |
---|---|
Total Downloads: | 7,003,809 |
Monthly Downloads: | 125,124 |
Daily Downloads: | 907 |
Total Stars: | 393 |
Total Watchers: | 7 |
Total Forks: | 93 |
Total Open Issues: | 8 |
A Mail Driver with support for Sendgrid Web API, using the original Laravel API. This library extends the original Laravel classes, so it uses exactly the same methods.
To use this package required your Sendgrid Api Key. Please make it Here.
If your project using guzzlehttp/guzzle 6.2.0 or less, you can use version 1.0.0 But the old version has security issues,
Add the package to your composer.json and run composer update.
"require": {
"s-ichikawa/laravel-sendgrid-driver": "~2.0"
},
or installed with composer
$ composer require s-ichikawa/laravel-sendgrid-driver
Add the sendgrid service provider in config/app.php: (Laravel 5.5+ uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.)
'providers' => [
Sichikawa\LaravelSendgridDriver\SendgridTransportServiceProvider::class
];
Add the package to your composer.json and run composer update.
"require": {
"s-ichikawa/laravel-sendgrid-driver": "~2.0"
},
or installed with composer
$ composer require s-ichikawa/laravel-sendgrid-driver
Add the sendgrid service provider in bootstrap/app.php
$app->configure('mail');
$app->configure('services');
$app->register(Sichikawa\LaravelSendgridDriver\MailServiceProvider::class);
unset($app->availableBindings['mailer']);
Create mail config files. config/mail.php
<?php
return [
'driver' => env('MAIL_DRIVER', 'sendgrid'),
];
.env
MAIL_DRIVER=sendgrid
SENDGRID_API_KEY='YOUR_SENDGRID_API_KEY'
config/services.php (In using lumen, require creating config directory and file.)
'sendgrid' => [
'api_key' => env('SENDGRID_API_KEY'),
],
If you need to set custom endpoint, you can set any endpoint by using endpoint
key.
For example, calls to SendGrid API through a proxy, call endpoint for confirming a request.
'sendgrid' => [
'api_key' => env('SENDGRID_API_KEY'),
'endpoint' => 'https://custom.example.com/send',
],
Every request made to /v3/mail/send will require a request body formatted in JSON containing your email’s content and metadata. Required parameters are set by Laravel's usually mail sending, but you can also use useful features like "categories" and "send_at".
\Mail::send('view', $data, function (Message $message) {
$message
->to('foo@example.com', 'foo_name')
->from('bar@example.com', 'bar_name')
->embedData([
'categories' => ['user_group1'],
'send_at' => $send_at->getTimestamp(),
], 'sendgrid/x-smtpapi');
});
more info https://sendgrid.com/docs/API_Reference/Web_API_v3/Mail/index.html#-Request-Body-Parameters
\Mail::send('view', $data, function (Message $message) {
$message
->to('foo@example.com', 'foo_name')
->from('bar@example.com', 'bar_name')
->replyTo('foo@bar.com', 'foobar');
->embedData([
'personalizations' => [
[
'to' => [
'email' => 'user1@example.com',
'name' => 'user1',
],
'substitutions' => [
'-email-' => 'user1@example.com',
],
],
[
'to' => [
'email' => 'user2@example.com',
'name' => 'user2',
],
'substitutions' => [
'-email-' => 'user2@example.com',
],
],
],
'categories' => ['user_group1'],
'custom_args' => [
'user_id' => "123" // Make sure this is a string value
]
], 'sendgrid/x-smtpapi');
});
<?
use Sichikawa\LaravelSendgridDriver\SendGrid;
class SendGridSample extends Mailable
{
use SendGrid;
public function build()
{
return $this
->view('template name')
->subject('subject')
->from('from@example.com')
->to(['to@example.com'])
->sendgrid([
'personalizations' => [
[
'substitutions' => [
':myname' => 's-ichikawa',
],
],
],
]);
}
}
Illuminate\Mailer has generally required a view file. But in case of using template id, set an empty array at view function.
<?
\Mail::send([], [], function (Message $message) {
$message
->to('to@example.com')
->embedData([
'personalizations' => [
[
'dynamic_template_data' => [
'title' => 'Subject',
'name' => 's-ichikawa',
],
],
],
'template_id' => config('services.sendgrid.templates.dynamic_template_id'),
], SendgridTransport::SMTP_API_NAME);
});
In case telescope is active and set array to first variable in embedData, telescope's watcher happen error in encoding. In ordar to avoid this probrem, you can use sgEncode function.
<?
use Sichikawa\LaravelSendgridDriver\SendGrid;
\Mail::send('view', $data, function (Message $message) {
$message
->to('foo@example.com', 'foo_name')
->from('bar@example.com', 'bar_name')
->embedData(sgEncode([
'categories' => ['user_group1'],
]), 'sendgrid/x-smtpapi');
});