mabon/laravel-sendgrid-driver

This liblary can add sendgrid driver into the laravel's mail configure.
12
Install
composer require mabon/laravel-sendgrid-driver
License:MIT
Last Updated:May 27, 2016
Links: GitHub  ·  Packagist
Maintainer: jguthery

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.

To use this package required your Sendgrid Api Key. Please make it Here.

Install (Laravel5.2~)

Add the package to your composer.json and run composer update.

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

or installed with composer

$ composer require io-digital/laravel-sendgrid-driver

Remove the default service provider and add the sendgrid service provider in app/config/app.php:

'providers' => [
//  Illuminate\Mail\MailServiceProvider::class,

    IoDigital\SendGridDriver\MailServiceProvider::class,
];

#Configure

.env

MAIL_DRIVER=sendgrid
SENDGRID_API_KEY='YOUR_SENDGRID_API_KEY'

config/service.php

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

Related Packages

clarification/sendgrid-laravel-driver

Sendgrid mail driver for Laravel

31,381 11
eventhomes/laravel-mandrillhooks

A simple Mandrill webhook controller to help with events. Compatible with Larave...

75,622 63
s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

10,575,484 407
yozaz/laravel-swiftmailer

Laravel and SwiftMailer integration fix for Queued deamon workers

73,822 24
coconutcraig/laravel-postmark

Laravel package for sending mail via the Postmark API

3,556,147 218