2017 © Pedro Peláez
 

library laravel-sendgrid-driver

SendGrid driver for Laravel's mail configuration

image

io-digital/laravel-sendgrid-driver

SendGrid driver for Laravel's mail configuration

  • Tuesday, June 5, 2018
  • by io-digital
  • Repository
  • 6 Watchers
  • 2 Stars
  • 6,865 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 2 Open issues
  • 4 Versions
  • 2 % Grown

The README.md

laravel-sendgrid-driver

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)

Using this package requires a Sendgrid API key which may be generated here., (*2)

Install

Add the package to your composer.json and run composer update:, (*3)

"require": {
    "io-digital/laravel-sendgrid-driver": "^1.0"
},

Alternatively, install directly 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,
];

Configure

Edit your .env file to include the following:, (*6)

MAIL_DRIVER=sendgrid
SENDGRID_API_KEY='YOUR_SENDGRID_API_KEY'

And finally, edit your config/service.php file to include the following:, (*7)

'sendgrid' => [
    'api_key' => env('SENDGRID_API_KEY')
]

The Versions

05/06 2018

dev-master

9999999-dev https://github.com/io-digital/laravel-sendgrid-driver

SendGrid driver for Laravel's mail configuration

  Sources   Download

MIT

The Requires

 

The Development Requires

by Laurentiu Nicolae

laravel mail sendgrid io-digital

12/12 2017

1.0.1

1.0.1.0 https://github.com/io-digital/laravel-sendgrid-driver

SendGrid driver for Laravel's mail configuration

  Sources   Download

MIT

The Requires

 

The Development Requires

by Laurentiu Nicolae

laravel mail sendgrid io-digital

12/12 2017

dev-hotfix-reply-to

dev-hotfix-reply-to https://github.com/io-digital/laravel-sendgrid-driver

SendGrid driver for Laravel's mail configuration

  Sources   Download

MIT

The Requires

 

The Development Requires

by Laurentiu Nicolae

laravel mail sendgrid io-digital

05/04 2016

1.0.0

1.0.0.0 https://bitbucket.org/io-digital/laravel-sendgrid-driver.git

This liblary can add sendgrid driver into the laravel's mail configure.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel mail sendgrid io-digital