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

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

glissmedia/sendpulse-laravel
============================

A minimal service provider to set up and use the SendPulse PHP library in Laravel 5

v1.0.1(10y ago)045MITPHP

Since Jan 19Pushed 7y ago1 watchersCompare

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

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

SendPulse Laravel Helper
========================

[](#sendpulse-laravel-helper)

A service provider and facade to set up and use the [SendPulse](https://sendpulse.com/) PHP library in Laravel 5.

[![Build Status](https://camo.githubusercontent.com/adfdd07491202c4022c5e4ec0253f6bf7a4f700cf615bea8b7ec7c1c6e4ff3a5/68747470733a2f2f7472617669732d63692e6f72672f676172657468746461766965732f73656e6470756c73652d6c61726176656c2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/garethtdavies/sendpulse-laravel)

This package consists of a service provider, which binds an instance of an initialized SendPulse client to the IoC-container and a SendPulse facade so you may access all methods of the SendpulseApi class via the syntax:

```
$message = ['title' => 'My first notification', 'website_id' => 1, 'body' => 'I am the body of the push message'];

SendPulse::createPushTask($message);
```

You should refer to the [SendPulse API](https://sendpulse.com/api) and underlying [SendPush PHP class](https://github.com/garethtdavies/sendpulse-rest-api-php) for full details about all available methods.

Setup
-----

[](#setup)

1. Install the 'wensleydale/sendpulse-laravel' package

    Note, this will also install the required wensleydale/sendpulse-rest-api-php package.

    ```
    $ composer require wensleydale/sendpulse-laravel:1.*
    ```
2. Update 'config/app.php'

    ```
    # Add `SendPulseLaravelServiceProvider` to the `providers` array
    'providers' => array(
        ...
        'SendPulse\SendPulseLaravel\SendPulseLaravelServiceProvider',
    )

    # Add the `SendPushFacade` to the `aliases` array
    'aliases' => array(
        ...
        'SendPulse' => 'SendPulse\SendPulseLaravel\SendPulseFacade',
    )
    ```
3. Publish the configuration file (creates sendpulse.php in config directory) and add your API keys and optional default settings.

    ```
    $ php artisan vendor:publish
    ```

### Type Hinting

[](#type-hinting)

If you do not wish to make use of the SendPulse facade you may simply "type-hint" the SendPulse dependency in the constructor of a class that is resolved by the IoC container and an instantiated client will be ready for use.

```
use SendPulse\SendpulseApi;

private $client;

public function __construct(SendpulseApi $client)
{
    $this->client = $client;
}

public function getWebsites()
{
	$this->client->pushListWebsites();
}
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity64

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

3766d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/08789d299eef5495d422a695294949130ffda67be988e3836d4fd8e42bf35ee3?d=identicon)[GlissmediaTeam](/maintainers/GlissmediaTeam)

---

Top Contributors

[![plenexy](https://avatars.githubusercontent.com/u/14321169?v=4)](https://github.com/plenexy "plenexy (1 commits)")

---

Tags

laravelsendpulse

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  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)[propaganistas/laravel-disposable-email

Disposable email validator

5762.6M6](/packages/propaganistas-laravel-disposable-email)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

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

Laravel notification driver for Discord.

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

PHPackages © 2026

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