bilyuk/sendinblue

SendinBlue API v3 wrapper for Laravel

Maintainers

Package info

github.com/bilyuk/sendinblue

pkg:composer/bilyuk/sendinblue

Statistics

Installs: 421

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.2 2018-10-12 15:10 UTC

This package is auto-updated.

Last update: 2026-03-13 07:56:29 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,
    //...
];