PHPackages                             s-ichikawa/laravel-sendgrid-driver - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. s-ichikawa/laravel-sendgrid-driver

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

s-ichikawa/laravel-sendgrid-driver
==================================

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

4.0.11(3mo ago)4079.9M↓23.2%97[8 issues](https://github.com/s-ichikawa/laravel-sendgrid-driver/issues)1MITPHPCI failing

Since Aug 16Pushed 3mo ago7 watchersCompare

[ Source](https://github.com/s-ichikawa/laravel-sendgrid-driver)[ Packagist](https://packagist.org/packages/s-ichikawa/laravel-sendgrid-driver)[ GitHub Sponsors](https://github.com/s-ichikawa)[ RSS](/packages/s-ichikawa-laravel-sendgrid-driver/feed)WikiDiscussions master Synced 4d ago

READMEChangelogDependencies (18)Versions (55)Used By (1)

Laravel SendGrid Driver
=======================

[](#laravel-sendgrid-driver)

[![SymfonyInsight](https://camo.githubusercontent.com/ca9e732c2f24af0a400a5db97a255d71013a0b824199f4318e42238196d1dc7f/68747470733a2f2f696e73696768742e73796d666f6e792e636f6d2f70726f6a656374732f38393535626335352d313666362d346163392d383230332d3163646365336432303961382f6d696e692e737667)](https://insight.symfony.com/projects/8955bc55-16f6-4ac9-8203-1cdce3d209a8)[![Build Status](https://camo.githubusercontent.com/9fc490e3be8c6d1a6300e2a3e6d936a111fba6aa17bed990aecc58dc365cc7bb/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f732d696368696b6177612f6c61726176656c2d73656e64677269642d6472697665722f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/s-ichikawa/laravel-sendgrid-driver/build-status/master)

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](https://sendgrid.com/docs/User_Guide/Settings/api_keys.html). Please make it [Here](https://app.sendgrid.com/settings/api_keys).

### Compatibility

[](#compatibility)

Laravellaravel-sendgrid-driver9, 10, 11^4.07, 8^3.05, 6^2.0Install (for [Laravel](https://laravel.com/))
=============================================

[](#install-for-laravel)

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

```
"require": {
    "s-ichikawa/laravel-sendgrid-driver": "^4.0"
},
```

or installed with composer

```
$ composer require s-ichikawa/laravel-sendgrid-driver

```

Install (for [Lumen](https://lumen.laravel.com/))
=================================================

[](#install-for-lumen)

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

```
"require": {
    "s-ichikawa/laravel-sendgrid-driver": "^4.0"
},
```

or installed with composer

```
$ composer require "s-ichikawa/laravel-sendgrid-driver"
```

Add the sendgrid service provider in bootstrap/app.php

```
$app->configure('mail');
$app->configure('services');
$app->register(Sichikawa\LaravelSendgridDriver\MailServiceProvider::class);

unset($app->availableBindings['mailer']);
```

Create mail config files. config/mail.php

```
