PHPackages                             allprogrammic/sendinblue-bundle - 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. allprogrammic/sendinblue-bundle

ActiveSymfony-bundle[Mail &amp; Notifications](/categories/mail)

allprogrammic/sendinblue-bundle
===============================

Symfony SendinblueBundle

1685PHP

Since Nov 3Pushed 8y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

AllProgrammic SendinBlue Bundle
===============================

[](#allprogrammic-sendinblue-bundle)

This bundle provides integration and api client of the sendinblue mail broker with Symfony

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

[](#installation)

Get the dependence in your project

```
composer require allprogrammic/sendinblue-bundle
```

Enable the bundle. In your AppKernel.php

```
public function registerBundles()
{
    $bundles = [
        // ...
        new AllProgrammic\Bundle\SendinBlueBundle\AllProgrammicSendinBlueBundle(),
        // ...
    ];
}
```

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

[](#configuration)

Get your sendinblue API key [here](https://account.sendinblue.com/advanced/api/), and add it to your config.yml

```
sendinblue:
    api:
        key: 'your key'
```

You may also want to set it through your parameters.yml file.

parameters.yml

```
parameters:
  sendinblue_api_key: 'your key'
```

config.yml

```
sendinblue:
    api:
        key: '%sendinblue_api_key%'
```

Usage
-----

[](#usage)

This bundle provide a service 'sendinblue.api.client' to interact with the sendinblue api.

### Example : retrieve your account data

[](#example--retrieve-your-account-data)

```
$this->get('sendinblue.api.client')->getAccount();
```

### Example : send a transactional message

[](#example--send-a-transactional-message)

```
$message = new \AllProgrammic\Bundle\SendinBlueBundle\Api\TransactionalMessage('my subject');
$message
    ->from('test@test.com', 'My Company')
    ->addTo('john.doe@acme.com')
    ->html($this->renderView('mytemplate.html.twig'))
    ->text($this->renderView('mytemplate.txt.twig'));

$this->get('sendinblue.api.client')->sendTransactional(message);
```

###  Health Score

23

—

LowBetter than 25% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/a910bc2870ac3b750b8ddfb1d2998b2d8ea7b24bc10a505d734ac0ff4a7d29b1?d=identicon)[wpottier](/maintainers/wpottier)

---

Top Contributors

[![wpottier](https://avatars.githubusercontent.com/u/361974?v=4)](https://github.com/wpottier "wpottier (7 commits)")

### Embed Badge

![Health badge](/badges/allprogrammic-sendinblue-bundle/health.svg)

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

###  Alternatives

[bigbharatjain/laravel-clickatell

This package makes it easy to send sms using clickatell.com with Laravel 5.

1435.2k](/packages/bigbharatjain-laravel-clickatell)[motomedialab/smtp2go

Send emails via API using the first-class email courier SMTP2Go

1323.6k](/packages/motomedialab-smtp2go)

PHPackages © 2026

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