bilyuk/sendinblue

SendinBlue API v3 wrapper for Laravel

1.0.2 2018-10-12 15:10 UTC

This package is auto-updated.

Last update: 2024-04-13 03:38:07 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,
    //...
];