div-art / laravel-sendinblue
Laravel 5.5 mail driver
0.0.2
2018-02-08 13:01 UTC
Requires
- php: >=7.0
- guzzlehttp/guzzle: 6.*
- illuminate/support: ^5
This package is not auto-updated.
Last update: 2025-05-06 07:03:57 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.