2017 © Pedro Peláez
 

library sendgrid-laravel-driver

Sendgrid mail driver for Laravel

image

clarification/sendgrid-laravel-driver

Sendgrid mail driver for Laravel

  • Friday, December 29, 2017
  • by Lidbetter
  • Repository
  • 2 Watchers
  • 6 Stars
  • 8,786 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 0 Open issues
  • 9 Versions
  • 10 % Grown

The README.md

Install

Require this package with composer using the following command:, (*1)

composer require clarification/sendgrid-laravel-driver

After updating composer, add the service provider to the providers array in config/app.php, (*2)

Clarification\MailDrivers\Sendgrid\SendgridServiceProvider::class,

You will also need to add the sendgrid API Key settings to the array in config/services.php and set up the environment key, (*3)

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

Then in your .env file you have to add, (*4)

SENDGRID_API_KEY=__Your_key_here__

Finally you need to set your mail driver to sendgrid. You can do this by changing the driver in config/mail.php, (*5)

'driver' => env('MAIL_DRIVER', 'sendgrid'),

Or by setting the environment variable MAIL_DRIVER in your .env file, (*6)

MAIL_DRIVER=sendgrid

If you need to pass any options to the guzzle client instance which is making the request to the Send Grid API, you can do so by setting the 'guzzle' options in config/services.php, (*7)

'sendgrid' => [
    'api_key' => env('SENDGRID_API_KEY'),
    'guzzle' => [
        'verify' => true,
        'decode_content' => true,
    ]
],

The Versions

29/12 2017

dev-master

9999999-dev http://clarification.io

Sendgrid mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Robin Lidbetter

laravel mail driver sendgrid

29/12 2017

2.0.1

2.0.1.0 http://clarification.io

Sendgrid mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Robin Lidbetter

laravel mail driver sendgrid

01/12 2017

2.0.0

2.0.0.0 http://clarification.io

Sendgrid mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Robin Lidbetter

laravel mail driver sendgrid

01/12 2017

1.0.5

1.0.5.0 http://clarification.io

Sendgrid mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Robin Lidbetter

laravel mail driver sendgrid

13/10 2017

1.0.4

1.0.4.0 http://clarification.io

Sendgrid mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Robin Lidbetter

laravel mail driver sendgrid

11/10 2017

1.0.3

1.0.3.0 http://clarification.io

Sendgrid mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Robin Lidbetter

laravel mail driver sendgrid

06/06 2016

1.0.2

1.0.2.0 http://clarification.io

Sendgrid mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Robin Lidbetter

laravel mail driver sendgrid

28/04 2016

1.0.1

1.0.1.0 http://clarification.io

Sendgrid mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Robin Lidbetter

laravel mail driver sendgrid

28/04 2016

1.0.0

1.0.0.0 http://clarification.io

Sendgrid mail driver for Laravel

  Sources   Download

MIT

The Requires

 

by Robin Lidbetter

laravel mail driver sendgrid