PHPackages                             vansteen/laravel-sendinblue - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. vansteen/laravel-sendinblue

ActiveLibrary[API Development](/categories/api)

vansteen/laravel-sendinblue
===========================

A Laravel 5/6/7/8 service provider, facade and config file for the SendinBlue's API v3 official PHP library.

v1.4(5y ago)18122.5k↓44.4%10[3 issues](https://github.com/vansteen/laravel-sendinblue/issues)[1 PRs](https://github.com/vansteen/laravel-sendinblue/pulls)MITPHPCI failing

Since May 25Pushed 2y ago1 watchersCompare

[ Source](https://github.com/vansteen/laravel-sendinblue)[ Packagist](https://packagist.org/packages/vansteen/laravel-sendinblue)[ Docs](https://github.com/vansteen/laravel-sendinblue)[ RSS](/packages/vansteen-laravel-sendinblue/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (6)Versions (10)Used By (0)

Laravel Sendinblue
==================

[](#laravel-sendinblue)

[![Latest Version on Packagist](https://camo.githubusercontent.com/8fdebc2bc0d6fa89cb0b40639de7363a04af51c40e3e5a90509ab943a6525d7e/68747470733a2f2f706f7365722e707567782e6f72672f76616e737465656e2f6c61726176656c2d73656e64696e626c75652f762f737461626c65)](https://packagist.org/packages/vansteen/laravel-sendinblue)[![Total Downloads](https://camo.githubusercontent.com/9e562a11c3c3d76d1f609782768af97a5be5dbb23fbe61c3cb277e6c1eaf87fa/68747470733a2f2f706f7365722e707567782e6f72672f76616e737465656e2f6c61726176656c2d73656e64696e626c75652f646f776e6c6f616473)](https://packagist.org/packages/vansteen/laravel-sendinblue)[![Build Status](https://camo.githubusercontent.com/5dc376c71ba0ba0821f26015cb209d2caae1d0a240909fbf17fddbcfb8e52c33/68747470733a2f2f7472617669732d63692e6f72672f76616e737465656e2f6c61726176656c2d73656e64696e626c75652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/vansteen/laravel-sendinblue)[![Coverage Status](https://camo.githubusercontent.com/0c8ad4ff9a19f7a7196e451748d4f6d56291c9430150025f582512ddb5c2df9d/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f76616e737465656e2f6c61726176656c2d73656e64696e626c75652f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/vansteen/laravel-sendinblue?branch=master)[![Quality Score](https://camo.githubusercontent.com/fddc175ad4684c4c2d74f9680d98030b40c51deaaa50056bac4574a7716e9fb0/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f76616e737465656e2f6c61726176656c2d73656e64696e626c75652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/vansteen/laravel-sendinblue)[![StyleCI](https://camo.githubusercontent.com/81f96f5d1e221a04fcd6b0c119d17cec686c9b0a28c30d25b11b36bdb4653521/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3133343836353435302f736869656c643f7374796c653d666c6174)](https://styleci.io/repos/134865450)[![License](https://camo.githubusercontent.com/44902a555a25dc3a7da129c81fa58645aa534f9dde0429bffccfcad2db28b63f/68747470733a2f2f706f7365722e707567782e6f72672f76616e737465656e2f6c61726176656c2d73656e64696e626c75652f6c6963656e7365)](https://github.com/vansteen/laravel-sendinblue/blob/HEAD/license.md)

The package simply provides a Laravel service provider, facade and config file for the SendinBlue's API v3 official PHP library.

Installation
------------

[](#installation)

You can install this package via Composer using:

```
composer require vansteen/laravel-sendinblue
```

For Laravel &lt;5.5, you must also install the service provider and the facade to your `config/app.php`:

```
// config/app.php
'providers' => [
    ...
    Vansteen\Sendinblue\SendinblueServiceProvider::class,
    ...
];
```

```
// config/app.php
'aliases' => [
    ...
    'Sendinblue' => Vansteen\Sendinblue\Facades\Sendinblue::class,
];
```

Configuration
-------------

[](#configuration)

You need to publish the config file to `app/config/sendinblue.php`. To do so, run:

```
php artisan vendor:publish --tag=sendinblue.config
```

Now you need to set your configuration using **environment variables**. Go the the Sendinblue API settings and add the v3 API key to your `.env` file.

```
SENDINBLUE_APIKEY=xkeysib-XXXXXXXXXXXXXXXXXXX
```

Usage
-----

[](#usage)

To test it, you can add the folowing code in routes.php.

```
// routes.php
...
use Vansteen\Sendinblue\Facades\Sendinblue;

Route::get('/test', function () {

    // Configure API keys authorization according to the config file
    $config = Sendinblue::getConfiguration();

    // Uncomment below to setup prefix (e.g. Bearer) for API keys, if needed
    // $config->setApiKeyPrefix('api-key', 'Bearer');
    // $config->setApiKeyPrefix('partner-key', 'Bearer');

    $apiInstance = new \SendinBlue\Client\Api\ListsApi(
        // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
        // This is optional, `GuzzleHttp\Client` will be used as default.
        new GuzzleHttp\Client(),
        $config
    );

    try {
        $result = $apiInstance->getLists();
        dd($result);
    } catch (Exception $e) {
        echo 'Exception when calling AccountApi->getAccount: ', $e->getMessage(), PHP_EOL;
    }

});
```

To get a idea of the of the API endpoints, visit the API [readme file](https://github.com/sendinblue/APIv3-php-library#documentation-for-api-endpoints).

Be sure to visit the SendinBlue official [documentation website](https://sendinblue.readme.io/docs) for additional information about our API.

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
composer test
```

Contributing
------------

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

Security
--------

[](#security)

If you discover any security related issues, please email author email instead of using the issue tracker.

License
-------

[](#license)

license. Please see the [license file](license.md) for more information.

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity41

Moderate usage in the ecosystem

Community15

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor1

Top contributor holds 86.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~107 days

Recently: every ~93 days

Total

9

Last Release

2101d ago

Major Versions

v0.4 → v1.12020-03-08

### Community

Maintainers

![](https://www.gravatar.com/avatar/71ae4f456404b023cf515b4bed5269af7ebaee61ab7a09c63170facfd9215493?d=identicon)[vansteen](/maintainers/vansteen)

---

Top Contributors

[![vansteen](https://avatars.githubusercontent.com/u/803464?v=4)](https://github.com/vansteen "vansteen (25 commits)")[![mvdnbrk](https://avatars.githubusercontent.com/u/802681?v=4)](https://github.com/mvdnbrk "mvdnbrk (2 commits)")[![rick20](https://avatars.githubusercontent.com/u/1517180?v=4)](https://github.com/rick20 "rick20 (1 commits)")[![stephenjude](https://avatars.githubusercontent.com/u/31182887?v=4)](https://github.com/stephenjude "stephenjude (1 commits)")

---

Tags

laravelsendinbluelaravelsendinblue

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/vansteen-laravel-sendinblue/health.svg)

```
[![Health](https://phpackages.com/badges/vansteen-laravel-sendinblue/health.svg)](https://phpackages.com/packages/vansteen-laravel-sendinblue)
```

###  Alternatives

[defstudio/telegraph

A laravel facade to interact with Telegram Bots

816333.6k3](/packages/defstudio-telegraph)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5021.9k](/packages/simplestats-io-laravel-client)[riclep/laravel-storyblok

A Laravel wrapper around the Storyblok API to provide a familiar experience for Laravel devs

6279.6k5](/packages/riclep-laravel-storyblok)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
