PHPackages                             sendeez/sendeez - 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. sendeez/sendeez

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

sendeez/sendeez
===============

Zero-dependency PHP SDK for the Sendeez transactional email API.

v0.1.0(today)00MITPHPPHP &gt;=8.1

Since Jul 27Pushed todayCompare

[ Source](https://github.com/sendeezhq/sendeez-php)[ Packagist](https://packagist.org/packages/sendeez/sendeez)[ Docs](https://github.com/lucassms9/sendeez/tree/main/packages/sdk-php#readme)[ RSS](/packages/sendeez-sendeez/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (1)Versions (2)Used By (0)

sendeez/sendeez
===============

[](#sendeezsendeez)

Zero-dependency PHP SDK for the Sendeez transactional email API. Requires only `ext-curl` and `ext-json`, both bundled with virtually every PHP build.

```
use Sendeez\Sendeez;

$sendeez = new Sendeez(getenv('SENDEEZ_API_KEY'));

$email = $sendeez->emails->send(
    [
        'from' => ['email' => 'hello@example.com', 'name' => 'Example'],
        'to' => [['email' => 'developer@example.com']],
        'subject' => 'Welcome',
        'text' => 'Your account is ready.',
    ],
    // Optional. The SDK generates one when omitted.
    idempotencyKey: 'welcome-user-123',
);

echo $email['id'], ' ', $email['status'];
```

Errors and agent actions
------------------------

[](#errors-and-agent-actions)

```
use Sendeez\SendeezError;

try {
    $sendeez->emails->send($message);
} catch (SendeezError $error) {
    error_log(sprintf(
        '%s param=%s request_id=%s retry_after=%s',
        $error->code,
        $error->param,
        $error->requestId,
        $error->retryAfter,
    ));
}
```

The SDK retries GET requests and mutations carrying an idempotency key after network errors, `429`, or `5xx`. It never automatically retries an unsafe mutation.

Every method accepts a `timeout` (seconds). This lets applications and AI agents enforce their own execution deadline:

```
$sendeez->emails->list(timeout: 5.0);
```

Testing
-------

[](#testing)

Pass `transport` to substitute a fake HTTP layer, the same role `fetch`/ `opener` injection plays in the Node and Python SDKs:

```
$sendeez = new Sendeez(
    'sendeez_example_secret',
    transport: function (string $method, string $url, array $headers, ?string $body, float $timeout): array {
        return ['status' => 200, 'headers' => [], 'body' => '{}'];
    },
);
```

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance100

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity32

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

0d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/13841645?v=4)[Lucas Mendonça](/maintainers/lucassms9)[@lucassms9](https://github.com/lucassms9)

---

Top Contributors

[![lucassms9](https://avatars.githubusercontent.com/u/13841645?v=4)](https://github.com/lucassms9 "lucassms9 (3 commits)")

---

Tags

apisdkemailtransactional emailsendeez

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[hafael/azure-mailer-driver

Supercharge your Laravel or Symfony app with Microsoft Azure Communication Services (ACS)! Effortlessly add email, chat, voice, video, and telephony-over-IP for next-level communication. 🚀

15130.8k](/packages/hafael-azure-mailer-driver)

PHPackages © 2026

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