PHPackages                             codewiser/laravel-sendsay-mailer - 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. codewiser/laravel-sendsay-mailer

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

codewiser/laravel-sendsay-mailer
================================

SendSay mailer for Laravel

v1.1.2(11mo ago)11.5k↓33.3%1MITPHPPHP ^8.1

Since Aug 10Pushed 11mo ago2 watchersCompare

[ Source](https://github.com/C0deWiser/laravel-sendsay-mailer)[ Packagist](https://packagist.org/packages/codewiser/laravel-sendsay-mailer)[ RSS](/packages/codewiser-laravel-sendsay-mailer/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (6)Used By (1)

SendSay mailer for Laravel
==========================

[](#sendsay-mailer-for-laravel)

This package brings one more mailer to your Laravel project —  service.

It supports as personal, as mass sending of emails.

Disclaimer
----------

[](#disclaimer)

This mailer was tested with very specific tasks, so we can not guarantee that it will meet your expectations.

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

[](#installation)

Just install package from composer.

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

[](#configuration)

Add `sendsay` section to `mail.mailers` config of your application:

```
'sendsay' => [
    'transport' => 'sendsay',
    'endpoint' => env('SENDSAY_URL', 'https://api.sendsay.ru/general/api/v100/json'),
    'login' => env('SENDSAY_LOGIN'),
    'password' => env('SENDSAY_PASS'),
    'sub_login' => env('SENDSAY_SUBLOGIN', ''),
],
```

Service will write info/error logs to channel defined in `mail.mailers.log.channel` config.

Finally, set `MAIL_MAILER=sendsay` to your `.env` file.

Mass sending
------------

[](#mass-sending)

Compose `Mailable` with more than one recipient and just send it:

```
use Illuminate\Support\Facades\Mail;

$recipients = [
    'foo@example.com',
    'bar@example.com',
];

Mail::send(new CustomMailable($recipients));
```

Personal sending
----------------

[](#personal-sending)

Compose `Mailable` with only one recipient or use `Notification`.

Getting response
----------------

[](#getting-response)

The only way to pass mailer response through facade back to the application (that I found) it to append response as a debug of `\Symfony\Component\Mailer\SentMessage`:

```
use Illuminate\Support\Facades\Mail;
use Illuminate\Mail\Events\MessageSent;

$recipients = [
    'foo@example.com',
    'bar@example.com',
];

Event::listen(MessageSent::class, function (MessageSent $event) {
    // json encoded response
    dump($event->sent->getDebug());
});

Mail::send(new CustomMailable($recipients));
```

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance50

Moderate activity, may be stable

Popularity20

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity56

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.

###  Release Activity

Cadence

Every ~162 days

Total

5

Last Release

356d ago

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

laravelmailersendsaylaravelmailmailersendsay

### Embed Badge

![Health badge](/badges/codewiser-laravel-sendsay-mailer/health.svg)

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

###  Alternatives

[vemcogroup/laravel-sparkpost-driver

SparkPost driver to use with Laravel 6.x|7.x|8.x|9.x|10.x

421.7M1](/packages/vemcogroup-laravel-sparkpost-driver)[tkeer/mailbase

Catch laravel emails for local development

10616.8k](/packages/tkeer-mailbase)

PHPackages © 2026

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