dev-master
9999999-dev https://github.com/mabon/laravel-sendgrid-driver.gitThis liblary can add sendgrid driver into the laravel's mail configure.
MIT
The Requires
The Development Requires
laravel mail sendgrid io-digital
Wallogit.com
2017 © Pedro Peláez
This liblary can add sendgrid driver into the laravel's mail configure.
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., (*1)
To use this package required your Sendgrid Api Key. Please make it Here., (*2)
Add the package to your composer.json and run composer update., (*3)
"require": {
"io-digital/laravel-sendgrid-driver": "^1.0"
},
or installed with composer, (*4)
$ composer require io-digital/laravel-sendgrid-driver
Remove the default service provider and add the sendgrid service provider in app/config/app.php:, (*5)
'providers' => [
// Illuminate\Mail\MailServiceProvider::class,
IoDigital\SendGridDriver\MailServiceProvider::class,
];
.env, (*6)
MAIL_DRIVER=sendgrid SENDGRID_API_KEY='YOUR_SENDGRID_API_KEY'
config/service.php, (*7)
'sendgrid' => [
'api_key' => env('SENDGRID_API_KEY')
]
This liblary can add sendgrid driver into the laravel's mail configure.
MIT
laravel mail sendgrid io-digital