bilyuk / sendinblue
SendinBlue API v3 wrapper for Laravel
Installs: 421
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/bilyuk/sendinblue
Requires
- sendinblue/api-v3-sdk: ^6.0
This package is auto-updated.
Last update: 2025-09-13 06:49:21 UTC
README
SendinBlue API v3 wrapper for Laravel
Installation
You can install the package through Composer.
composer require bilyuk/sendinblue
Usage
Laravel:
Just put in your services
config file
'sendinblue' => [ 'v3' => [ 'key' => env('SENDINBLUE_KEY_V3'), ], ],
For Laravel <5.5 add in your app
config
'providers' => [ bilyuk\Sendinblue\ServiceProvider::class, //... ]; 'aliases' => [ 'SendinBlue' => \bilyuk\Sendinblue\Facades\SendinBlue::class, //... ];