PHPackages                             olenchenko-a/laravel-sendpulse-mail - 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. olenchenko-a/laravel-sendpulse-mail

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

olenchenko-a/laravel-sendpulse-mail
===================================

Laravel package for Sendpulse mail transport

0451—0%PHP

Since Dec 19Pushed 1y ago1 watchersCompare

[ Source](https://github.com/olenchenko-a/laravel-sendpulse)[ Packagist](https://packagist.org/packages/olenchenko-a/laravel-sendpulse-mail)[ RSS](/packages/olenchenko-a-laravel-sendpulse-mail/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

Laravel Sendpulse mail transport
================================

[](#laravel-sendpulse-mail-transport)

Laravel mail transport based on  library

**Installation:**

```
    composer require olenchenko-a/laravel-sendpulse-mail

```

**Configuration:**

In the config **config/mail.php** add a new transport:

```
return [
    //...
    'mailers' => [
        //...
        'sendpulse' => [
            'transport' => 'sendpulse',
            'api_user_id' => env('SPAPI_USER_ID'),
            'api_secret' => env('SPAPI_SECRET'),
        ],
    ]
]
```

**Register the Service Provider**

In `config/app.php` to providers section add

```
LaravelSendpulseMail\SendpulseMailServiceProvider::class,

```

In `config/services.php` add

```
'send_pulse' => [
        'api_user_id' => env('SPAPI_USER_ID'),
        'api_secret' => env('SPAPI_SECRET'),
    ],
```

Add to your .env

```
MAIL_MAILER=sendpulse

```

And provide your sendpulse credentials

```
SPAPI_USER_ID="YOUR_USER_ID"
SPAPI_SECRET="YOUR_SECRET"

```

Package also provide **EmailSend** event which contain the result of the operation sending email. You can use it for additional validating email sending result

```
    public function handle(EmailSend $event): void
    {
        if($event->result) {
            dispatch(function () use ($event) {
                $data = $this->client->get('smtp/emails/' . $event->emailId);

                if($data['smtp_answer_code'] != 250) {
                    // Despite email was successfuly sent to Sendpulse,
                    // it was not delivered to recepient
                }
            })->delay(now()->addMinutes(3));
        }
    }
```

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 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/027ed1a0957cda12e6a1c9625cccfec20a0b5cb0d93b15bde626f6b1cd6f99df?d=identicon)[olenchenko.a](/maintainers/olenchenko.a)

---

Top Contributors

[![olenchenko-a](https://avatars.githubusercontent.com/u/16111263?v=4)](https://github.com/olenchenko-a "olenchenko-a (3 commits)")

### Embed Badge

![Health badge](/badges/olenchenko-a-laravel-sendpulse-mail/health.svg)

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

###  Alternatives

[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[eduardokum/laravel-mail-auto-embed

Library for embed images in emails automatically

1702.0M5](/packages/eduardokum-laravel-mail-auto-embed)

PHPackages © 2026

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