PHPackages                             concept7/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. concept7/laravel-sendinblue

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

concept7/laravel-sendinblue
===========================

Laravel package for sending transactional emails with Sendinblue using Sendinblue SDK V3 and Symfony

v1.0.0(2y ago)56.5k2MITPHPPHP ^8.1

Since Aug 31Pushed 2y ago3 watchersCompare

[ Source](https://github.com/concept7/laravel-sendinblue)[ Packagist](https://packagist.org/packages/concept7/laravel-sendinblue)[ Docs](https://concept7.nl)[ RSS](/packages/concept7-laravel-sendinblue/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (13)Versions (3)Used By (0)

[![Concept7 Sendinblue](https://camo.githubusercontent.com/6787642162ee4364dd0261f2a8b89f1095c969b431548722596c1b805a89e594/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f4c61726176656c25323053656e64696e626c75652e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d636f6e63657074372532466c61726176656c2d73656e64696e626c7565267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d412b4c61726176656c2b7061636b6167652b666f722b73656e64696e672b7472616e73616374696f6e616c2b656d61696c732b7468726f7567682b53656e64696e626c7565266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d313030707826696d616765733d68747470732533412532462532466c61726176656c2e636f6d253246696d672532466c6f676f6d61726b2e6d696e2e737667)](https://camo.githubusercontent.com/6787642162ee4364dd0261f2a8b89f1095c969b431548722596c1b805a89e594/68747470733a2f2f62616e6e6572732e6265796f6e64636f2e64652f4c61726176656c25323053656e64696e626c75652e706e673f7468656d653d6c69676874267061636b6167654d616e616765723d636f6d706f7365722b72657175697265267061636b6167654e616d653d636f6e63657074372532466c61726176656c2d73656e64696e626c7565267061747465726e3d617263686974656374267374796c653d7374796c655f31266465736372697074696f6e3d412b4c61726176656c2b7061636b6167652b666f722b73656e64696e672b7472616e73616374696f6e616c2b656d61696c732b7468726f7567682b53656e64696e626c7565266d643d312673686f7757617465726d61726b3d3026666f6e7453697a653d313030707826696d616765733d68747470732533412532462532466c61726176656c2e636f6d253246696d672532466c6f676f6d61726b2e6d696e2e737667)

laravel-sendinblue
==================

[](#laravel-sendinblue)

This project is created to simplify sending transactional emails through Sendinblue using Laravel Mailables, [Symfony/sendinblue-mailer](https://github.com/symfony/sendinblue-mailer) and [Sendinblue API V3 PHP library](https://github.com/sendinblue/APIv3-php-library).

Install using Composer
----------------------

[](#install-using-composer)

```
composer require concept7/laravel-sendinblue

```

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

[](#configuration)

### Step 1

[](#step-1)

Ensure that you have the following variables in your project's .env file:

```
SENDINBLUE_API_KEY=
APP_NAME=
MAIL_FROM_ADDRESS=

```

### Step 2

[](#step-2)

Add the following maildriver to config/mail.php in the `mailers` array.

```
'sendinblue' => [
     'transport' => 'sendinblue',
],

```

### Step 3

[](#step-3)

Set the `MAIL_MAILER` .env variable to:

```
MAIL_MAILER=sendinblue

```

Usage
-----

[](#usage)

Create a new Mailable using `php artisan make:mail` and add the `Sendinblue` trait to the Mailable. Next, add `->sendinblue([])` to the Mailable instance and you're done.

```
use Concept7\LaravelSendinblue\Sendinblue;

class MyMailable extends Mailable
{
    use Queueable,
        SerializesModels,
        Sendinblue;

    /**
     * Build the message
     */
    public function build()
    {
        return $this
            ->to()
            ->sendinblue([
                'template_id'  => 1,
                'params'       => [
                    // insert parameters here
                ]
            ]);
    }
}
```

Credits
-------

[](#credits)

- [Jeroen Hulshof](https://github.com/concept7)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 68.8% 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 ~279 days

Total

2

Last Release

1071d ago

Major Versions

v0.0.1 → v1.0.02023-06-07

### Community

Maintainers

![](https://www.gravatar.com/avatar/9c8436fa940b097bc16a3da74b6d85a4070816e19070a5bdc1a6f733a61f75fc?d=identicon)[concept7](/maintainers/concept7)

---

Top Contributors

[![Jeroenhulshof](https://avatars.githubusercontent.com/u/19838450?v=4)](https://github.com/Jeroenhulshof "Jeroenhulshof (11 commits)")[![DominicV1](https://avatars.githubusercontent.com/u/71736069?v=4)](https://github.com/DominicV1 "DominicV1 (3 commits)")[![jhhazelaar](https://avatars.githubusercontent.com/u/215711?v=4)](https://github.com/jhhazelaar "jhhazelaar (2 commits)")

---

Tags

laravelsendinbluetransactional-emailslaravelconcept7laravel-sendinblue

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/concept7-laravel-sendinblue/health.svg)](https://phpackages.com/packages/concept7-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)[fedeisas/laravel-mail-css-inliner

Inline the CSS of your HTML emails using Laravel

5974.6M3](/packages/fedeisas-laravel-mail-css-inliner)[s-ichikawa/laravel-sendgrid-driver

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

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[propaganistas/laravel-disposable-email

Disposable email validator

5762.6M6](/packages/propaganistas-laravel-disposable-email)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)

PHPackages © 2026

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