PHPackages                             mydnic/kanpen-filament-plugin - 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. [Admin Panels](/categories/admin)
4. /
5. mydnic/kanpen-filament-plugin

ActiveLibrary[Admin Panels](/categories/admin)

mydnic/kanpen-filament-plugin
=============================

A Filament plugin to manage your Kanpen Campaigns and Subscribers

v1.0.0(2mo ago)019[3 PRs](https://github.com/mydnic/kanpen-filament-plugin/pulls)MITPHPPHP ^8.2CI passing

Since May 13Pushed 1mo agoCompare

[ Source](https://github.com/mydnic/kanpen-filament-plugin)[ Packagist](https://packagist.org/packages/mydnic/kanpen-filament-plugin)[ Docs](https://github.com/mydnic/kanpen-filament-plugin)[ GitHub Sponsors](https://github.com/Mydnic)[ RSS](/packages/mydnic-kanpen-filament-plugin/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (1)Dependencies (10)Versions (6)Used By (0)

Kanpen Filament Plugin
======================

[](#kanpen-filament-plugin)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1c733629e47cf2c4048df4bf9ed7cda62a01a1f073ea7b992f21df6a308b8115/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d79646e69632f6b616e70656e2d66696c616d656e742d706c7567696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/mydnic/kanpen-filament-plugin)[![GitHub Tests Action Status](https://camo.githubusercontent.com/61003cc8eb9c30629962fc8488c95c191e21509b78f0f3b5f2ec0b74f8b5bb9b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d79646e69632f6b616e70656e2d66696c616d656e742d706c7567696e2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/mydnic/kanpen-filament-plugin/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/bf33fc6a91d75ef1d95a486408e662b057968fd08b32390145ad0d10a7ea9888/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6d79646e69632f6b616e70656e2d66696c616d656e742d706c7567696e2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/mydnic/kanpen-filament-plugin/actions?query=workflow%3A%22Fix+PHP+code+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/9c3eeaac562b5988a02ef72da9f4233e218b69fabaea2ed27a5a312ad6bd051e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6d79646e69632f6b616e70656e2d66696c616d656e742d706c7567696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/mydnic/kanpen-filament-plugin)

A [Filament](https://filamentphp.com) plugin for [Kanpen](https://github.com/mydnic/kanpen) — the Laravel newsletter package. Manage your subscribers, build email campaigns with a drag-and-drop editor, and track opens and clicks, all from your Filament admin panel.

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11+
- Filament 5+
- [mydnic/kanpen](https://github.com/mydnic/kanpen)

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

[](#installation)

Install the plugin via Composer:

```
composer require mydnic/kanpen-filament-plugin
```

Publish and run the migrations:

```
php artisan vendor:publish --tag="kanpen-filament-plugin-migrations"
php artisan migrate
```

Register the plugin in your Filament panel provider:

```
use Mydnic\KanpenFilamentPlugin\KanpenFilamentPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        // ...
        ->plugin(KanpenFilamentPlugin::make());
}
```

What's included
---------------

[](#whats-included)

### Subscribers

[](#subscribers)

- List all subscribers with their email verification status
- View a subscriber's full campaign history — every campaign delivered to them with open and click stats
- Soft delete, restore, and force delete

### Campaigns

[](#campaigns)

- Create and edit campaigns with a drag-and-drop email builder (powered by [Unlayer](https://unlayer.com))
- Load a saved template as the starting point for a campaign
- Send a test email to any address before going live
- Send a campaign to all subscribers (dispatched to the queue)
- Schedule campaigns for a future date
- View per-campaign stats: total sent, unique opens, total clicks
- Status badges: Draft, Sending, Sent, Cancelled

### Email Templates

[](#email-templates)

- Build reusable email templates with the Unlayer drag-and-drop editor
- Templates are stored as both a design JSON (for re-editing) and compiled HTML (for sending)
- Load any template into a campaign with one click

Email builder
-------------

[](#email-builder)

The campaign and template editors use [Unlayer](https://unlayer.com)'s free embeddable editor. Designs are saved as Unlayer JSON alongside the compiled HTML. The HTML is what Kanpen actually sends — so the editor is entirely optional and swappable in the future without touching the sending logic.

Kanpen passes the compiled HTML directly to Laravel's mailer. If the content is a partial HTML snippet rather than a full document, Kanpen automatically wraps it in your application's mail layout (the one configured via `php artisan vendor:publish --tag=laravel-mail`), including an unsubscribe link in the footer.

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](.github/SECURITY.md) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Mydnic](https://github.com/mydnic)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance89

Actively maintained with recent releases

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity50

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

Unknown

Total

1

Last Release

72d ago

### Community

Maintainers

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

---

Top Contributors

[![mydnic](https://avatars.githubusercontent.com/u/2733767?v=4)](https://github.com/mydnic "mydnic (32 commits)")

---

Tags

laravelfilamentfilament-pluginfilamentphpmydnickanpen-filament-plugin

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/mydnic-kanpen-filament-plugin/health.svg)

```
[![Health](https://phpackages.com/badges/mydnic-kanpen-filament-plugin/health.svg)](https://phpackages.com/packages/mydnic-kanpen-filament-plugin)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.8k](/packages/rawilk-profile-filament-plugin)[backstage/mails

View logged mails and events in a beautiful Filament UI.

16121.5k](/packages/backstage-mails)[croustibat/filament-jobs-monitor

Background Jobs monitoring like Horizon for all drivers for FilamentPHP

274333.4k9](/packages/croustibat-filament-jobs-monitor)[marcelweidum/filament-passkeys

Use passkeys in your filamentphp app

6649.5k2](/packages/marcelweidum-filament-passkeys)[mradder/filament-logger

Audit logging, activity tracking, exports, alerts, and dashboards for Filament admin panels.

2318.8k](/packages/mradder-filament-logger)[caresome/filament-neobrutalism-theme

A neobrutalism theme for FilamentPHP admin panels

335.6k1](/packages/caresome-filament-neobrutalism-theme)

PHPackages © 2026

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