2017 © Pedro Peláez
 

library laravel-sendgrid-driver

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

image

mabon/laravel-sendgrid-driver

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

  • Friday, May 27, 2016
  • by jguthery
  • Repository
  • 0 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % 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)

To use this package required your Sendgrid Api Key. Please make it Here., (*2)

Install (Laravel5.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,
];

Configure

.env, (*6)

MAIL_DRIVER=sendgrid
SENDGRID_API_KEY='YOUR_SENDGRID_API_KEY'

config/service.php, (*7)

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

The Versions

27/05 2016

dev-master

9999999-dev https://github.com/mabon/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