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

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

pigeon/pigeon-laravel
=====================

Pigeon lets you easily manage your outbound email, push notifications and SMS. Visit https://pigeonapp.io for more details.

v0.2.0(7y ago)114MITPHP

Since Feb 16Pushed 7y ago1 watchersCompare

[ Source](https://github.com/pigeonapp/pigeon-laravel)[ Packagist](https://packagist.org/packages/pigeon/pigeon-laravel)[ Docs](https://pigeonapp.io)[ RSS](/packages/pigeon-pigeon-laravel/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (3)Versions (3)Used By (0)

Pigeon
======

[](#pigeon)

Pigeon lets you easily manage your outbound email, push notifications and SMS. Visit  for more details.

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

[](#installation)

Require via composer.

```
$ composer require pigeon/pigeon-laravel
```

### Laravel

[](#laravel)

The package will be discovered for Laravel &gt;=5.5. For Laravel &lt;=5.4, add package to the list of service providers in `config/app.php`

```
'providers' => [
    // ...
    Pigeon\Laravel\PigeonServiceProvider::class,
];

```

Add the Pigeon facade alias in your `config/app.php`.

```
'aliases' => [
    // ...
    'Pigeon' => Pigeon\Laravel\PigeonFacade::class,
];

```

### Lumen

[](#lumen)

In Lumen, find the `Register Service Providers` in your `bootstrap/app.php` and register the Pigeon Service Provider.

```
$app->register(Pigeon\Laravel\PigeonServiceProvider::class);

```

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

[](#configuration)

By default, the package uses `PIGEON_PUBLIC_KEY` and `PIGEON_PRIVATE_KEY` environment variables. To customize the configuration file, publish the package configuration using Artisan.

```
php artisan vendor:publish  --provider="Pigeon\Laravel\PigeonServiceProvider" --tag="config"

```

or if using Laravel 5.5:

```
php artisan vendor:publish

```

The settings can be found in the generated `config/pigeon.php` configuration file. By default, the keys would be retrieved from your .env file.

Usage
-----

[](#usage)

### Prepare for the delivery

[](#prepare-for-the-delivery)

```
$message_identifier = 'message-identifier';
$parcels = ['to' => 'john@example.com'];
```

- Message identifier is used to identify the message. Grab this from your Pigeon dashboard.
- Parcels array accepts `to`, `cc`, `bcc` and `data`.

### Deliver

[](#deliver)

```
Pigeon::deliver($message_identifier, $parcels);
```

### Parcel sample (Single recipient)

[](#parcel-sample-single-recipient)

```
$parcels = [
  'to' => 'John Doe ',
  'cc' => [
    'admin@example.com',
    'Sales Team '
  ],
  'data' => [
    // template variables are added here
    'name' => 'John'
  ],
  'attachments' => [
    // `file` can be either local file path or remote URL
    [
      'file' => '/path/to/image.png',
      'name' => 'Logo'
    ],
    [
      'file' => 'https://example.com/guide.pdf',
      'name' => 'Guide'
    ]
  ]
];
```

### Parcel sample (Multiple recipients)

[](#parcel-sample-multiple-recipients)

```
$parcels = [
  [
    'to' => 'John Doe ',
    'data' => [
      // template variables are added here
      'name' => 'John'
    ]
  ],
  [
    'to' => 'Jane Doe ',
    'data' => [
      // template variables are added here
      'name' => 'Jane'
    ]
  ],
];
```

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

[](#contributing)

You can contribute in one of three ways:

1. File bug reports using the [issue tracker](https://github.com/pigeonapp/pigeon-laravel/issues).
2. Answer questions or fix bugs on the [issue tracker](https://github.com/pigeonapp/pigeon-laravel/issues).
3. Contribute new features or update the wiki.

*The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.*

License
-------

[](#license)

The composer package is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

Code of Conduct
---------------

[](#code-of-conduct)

Everyone interacting in the Pigeon project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/pigeonapp/pigeon-laravel/blob/master/CODE_OF_CONDUCT.md).

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

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 ~42 days

Total

2

Last Release

2599d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/07b73ea0871bb8a9f0e8f74bb189e4899f57ed443a6c6cf4d4cf04820a0d3793?d=identicon)[RabidFire](/maintainers/RabidFire)

![](https://www.gravatar.com/avatar/97b9cee5cbb1d337b508b4cf35aae7c5930a920e4c4c94424ceb34abb75ef3c1?d=identicon)[onerinas](/maintainers/onerinas)

---

Tags

emailsmspush notificationpigeonpigeonapp

###  Code Quality

Code StylePHP CS Fixer

### Embed Badge

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

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

###  Alternatives

[propaganistas/laravel-disposable-email

Disposable email validator

5762.6M6](/packages/propaganistas-laravel-disposable-email)[mageplaza/module-smtp

SMTP Extension for Magento 2 helps the owner of store simply install SMTP (Simple Mail Transfer Protocol) server which transmits the messages into codes or numbers

3015.9M8](/packages/mageplaza-module-smtp)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[tzsk/sms

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

320244.3k6](/packages/tzsk-sms)[garethp/php-ews

A PHP Library to interact with the Exchange SOAP service

113610.3k4](/packages/garethp-php-ews)[mailersend/laravel-driver

MailerSend Laravel Driver

87732.8k4](/packages/mailersend-laravel-driver)

PHPackages © 2026

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