PHPackages                             rick20/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. [Mail &amp; Notifications](/categories/mail)
4. /
5. rick20/laravel-sendinblue

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

rick20/laravel-sendinblue
=========================

Provides a Laravel 6 service provider, facade and config file for the SendinBlue's API v3 official PHP library.

v1.0.1(6y ago)0317MITPHP

Since May 25Pushed 6y agoCompare

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

READMEChangelog (2)Dependencies (4)Versions (9)Used By (0)

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

[](#laravel-sendinblue)

[![Latest Version on Packagist](https://camo.githubusercontent.com/6439f3cf9448ba645a9e92f4f390422cc43743d7f13115a4ddf4ab81d62ca6b1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f76616e737465656e2f6c61726176656c2d73656e64696e626c75652e7376673f6c6f6e6743616368653d74727565267374796c653d666c61742d737175617265)](https://packagist.org/packages/vansteen/laravel-sendinblue)[![Total Downloads](https://camo.githubusercontent.com/87164c05b90010cf5c9dada37ed8e143ff4e386d25535fad2c5e9374f79d3ff2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f76616e737465656e2f6c61726176656c2d73656e64696e626c75652e7376673f6c6f6e6743616368653d74727565267374796c653d666c61742d737175617265)](https://packagist.org/packages/vansteen/laravel-sendinblue)[![Build Status](https://camo.githubusercontent.com/14c729c18f580575d8740c728b189fd2b4ebdcb04f9989e99517cdc93fe95ee8/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f76616e737465656e2f6c61726176656c2d73656e64696e626c75652f6d61737465722e7376673f6c6f6e6743616368653d74727565267374796c653d666c61742d737175617265)](https://travis-ci.org/vansteen/laravel-sendinblue)[![Quality Score](https://camo.githubusercontent.com/656e0ab291f36045750dd9fc11686f3f348c7460bf748f49351de39cc8486929/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f76616e737465656e2f6c61726176656c2d73656e64696e626c75652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/vansteen/laravel-sendinblue)[![StyleCI](https://camo.githubusercontent.com/f3b161c932aa3200b3e66a72c1eb11bd7ab34a54e8992319b5c5b83102ed7ea3/68747470733a2f2f7374796c6563692e696f2f7265706f732f3133343836353435302f736869656c64)](https://styleci.io/repos/134865450)

The package simply provides a Laravel 5 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`. Run:

```
php artisan vendor:publish --provider="Vansteen\Sendinblue\SendinblueServiceProvider"
```

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)

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

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

    $config = Sendinblue::getConfiguration();

    $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).

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

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 66.7% 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 ~78 days

Recently: every ~117 days

Total

7

Last Release

2437d ago

Major Versions

v0.5 → v1.0.02019-09-09

### Community

Maintainers

![](https://www.gravatar.com/avatar/6e7fec185ff90ca8ab547b702291bea3f6541842b69c6fed53787dfe53fefd41?d=identicon)[rick20](/maintainers/rick20)

---

Top Contributors

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

---

Tags

laravelsendinblue

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[mckenziearts/laravel-notify

Flexible flash notifications for Laravel

1.7k1.1M5](/packages/mckenziearts-laravel-notify)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[tzsk/sms

A robust and unified SMS gateway integration package for Laravel, supporting multiple providers.

320244.3k6](/packages/tzsk-sms)[therobfonz/laravel-mandrill-driver

Mandrill Driver for Laravel

773.5M](/packages/therobfonz-laravel-mandrill-driver)

PHPackages © 2026

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