PHPackages                             jfunu/laravel-ses-manager - 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. [Logging &amp; Monitoring](/categories/logging)
4. /
5. jfunu/laravel-ses-manager

ActivePackage[Logging &amp; Monitoring](/categories/logging)

jfunu/laravel-ses-manager
=========================

Logs SES bounces and complaints for Laravel app

08.1kPHP

Since Nov 29Pushed 1y agoCompare

[ Source](https://github.com/jfunulab/laravel-ses-manager)[ Packagist](https://packagist.org/packages/jfunu/laravel-ses-manager)[ RSS](/packages/jfunu-laravel-ses-manager/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

laravel-ses-manager
===================

[](#laravel-ses-manager)

Logs AWS Simple Email Service bounces and complaints for Laravel app

Setup
=====

[](#setup)

```
composer require Megaverse/laravel-ses-manager
php artisan migrate
```

- Add the routes to your controller and off you go

```
// api.php
Route::post('/webhooks/ses/bounce', [Megaverse\LaravelSesManager\Controllers\SESWebhookController::class, 'bounce']);
Route::post('/webhooks/ses/complaint', [Megaverse\LaravelSesManager\Controllers\SESWebhookController::class, 'complaint']);
```

- Map the hooks in your SES dashboard to the your application routes.

Usage
=====

[](#usage)

Use `Megaverse\LaravelSesManager\Eloquent\BlackListItem` is the model for blacklisted emails.

```
// check if email is blacklisted
$blackListItem = Megaverse\LaravelSesManager\Eloquent\BlackListItem::query()
  ->whereNotNull('blacklisted_at')
  ->where('email', $email)
  ->first();

// whitelist email while keeping it in the history
$blackListItem->delete();

// remove email and remove it from the history
$blackListItem->forceDelete();
```

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance29

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity17

Early-stage or recently created project

 Bus Factor1

Top contributor holds 87% 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/6f2e08922a8d011fae59af59555a2391d171eb276a7073dd2363bf3738e2b856?d=identicon)[jfunu](/maintainers/jfunu)

---

Top Contributors

[![jfunulab](https://avatars.githubusercontent.com/u/3631095?v=4)](https://github.com/jfunulab "jfunulab (20 commits)")[![motia](https://avatars.githubusercontent.com/u/20706253?v=4)](https://github.com/motia "motia (3 commits)")

### Embed Badge

![Health badge](/badges/jfunu-laravel-ses-manager/health.svg)

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

###  Alternatives

[psr/log

Common interface for logging libraries

10.4k1.2B10.9k](/packages/psr-log)[open-telemetry/api

API for OpenTelemetry PHP.

1938.5M261](/packages/open-telemetry-api)[open-telemetry/sdk

SDK for OpenTelemetry PHP.

2326.5M315](/packages/open-telemetry-sdk)[illuminated/console-logger

Logging and Notifications for Laravel Console Commands.

8676.7k](/packages/illuminated-console-logger)

PHPackages © 2026

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