div-art / laravel-sendinblue
Laravel 5.5 mail driver
Installs: 109
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 0
pkg:composer/div-art/laravel-sendinblue
Requires
- php: >=7.0
- guzzlehttp/guzzle: 6.*
- illuminate/support: ^5
This package is not auto-updated.
Last update: 2025-10-07 09:01:02 UTC
README
Extends Laravel mail drivers to send emails using SendInBlue API
Installation
To install, run the following in your project directory:
$ composer require div-art/laravel-sendinblue
Then in config/app.php
add the following to the providers
array:
DivArt\SendInBlue\SendInBlueServiceProvider::class,
Configuration
To publish SendInBlue's configuration file, run the following vendor:publish
command:
php artisan vendor:publish --provider="DivArt\SendInBlue\SendInBlueServiceProvider"
This will create sendinblue.php in your configuration directory. In this file you must specify your sendinblue api-key. The api-key can be obtained from the settings of the SendInBlue account. Also SendInBlue should activate your SMTP account. To do this, write to them in support.
.env
MAIL_DRIVER=sendinblue
License
The MIT License (MIT). Please see License File for more information.