PHPackages                             misaf/vendra-newsletter - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. misaf/vendra-newsletter

ActiveVendra-module[Utility &amp; Helpers](/categories/utility)

misaf/vendra-newsletter
=======================

Tenant-aware newsletter publishing and subscriber management for Vendra

v1.10.0(2w ago)111[1 PRs](https://github.com/misaf/vendra-newsletter/pulls)1MITPHPPHP ^8.3CI failing

Since Jul 10Pushed 2w agoCompare

[ Source](https://github.com/misaf/vendra-newsletter)[ Packagist](https://packagist.org/packages/misaf/vendra-newsletter)[ Docs](https://github.com/misaf/vendra-newsletter)[ RSS](/packages/misaf-vendra-newsletter/feed)WikiDiscussions 1.x Synced 1w ago

READMEChangelog (10)Dependencies (17)Versions (25)Used By (1)

Vendra Newsletter
=================

[](#vendra-newsletter)

Tenant-aware newsletter management for Vendra applications.

Features
--------

[](#features)

- Newsletters with a draft / scheduled / sent lifecycle
- Newsletter subscribers with subscribe and unsubscribe tracking
- Filament resources on the `admin` panel, grouped under `Marketing`

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

[](#requirements)

- PHP 8.3+
- Laravel 13
- Filament 5
- Livewire 4
- Pest 4
- Tailwind CSS 4
- `misaf/vendra-support`

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

[](#installation)

```
composer require misaf/vendra-newsletter
php artisan vendor:publish --tag=vendra-newsletter-migrations
php artisan migrate
```

Optional configuration and translations:

```
php artisan vendor:publish --tag=vendra-newsletter-config
php artisan vendor:publish --tag=vendra-newsletter-translations
```

The service provider and Filament plugin are auto-registered.

Usage
-----

[](#usage)

Create a newsletter:

```
use Misaf\VendraNewsletter\Enums\NewsletterStatusEnum;
use Misaf\VendraNewsletter\Models\Newsletter;

Newsletter::query()->create([
    'subject' => 'Monthly Update',
    'content' => 'Hello world.',
    'status' => NewsletterStatusEnum::Draft,
]);
```

Add a subscriber (`subscribed_at` and the unsubscribe token are assigned automatically):

```
use Misaf\VendraNewsletter\Models\NewsletterSubscriber;

NewsletterSubscriber::query()->create([
    'email' => 'reader@example.com',
    'name' => 'Reader',
]);
```

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

[](#configuration)

`config/vendra-newsletter.php` controls the Filament panels, navigation group, and the queue/batch settings used when sending a newsletter:

- `batch_chunk_size` — subscribers per dispatched batch job (`NEWSLETTER_BATCH_CHUNK_SIZE`)
- `queue.tries` — retry attempts for send jobs (`NEWSLETTER_QUEUE_TRIES`)
- `queue.timeout` — batch fan-out job timeout (`NEWSLETTER_QUEUE_TIMEOUT`)
- `queue.email_timeout` — per-recipient delivery job timeout (`NEWSLETTER_EMAIL_QUEUE_TIMEOUT`)

Filament
--------

[](#filament)

Resources are available in the shared `Marketing` cluster on the `admin` panel:

- Newsletters
- Subscribers

Testing
-------

[](#testing)

Run the package checks from the package directory:

```
composer test
composer analyse
```

License
-------

[](#license)

MIT. See [LICENSE](LICENSE).

###  Health Score

46

—

FairBetter than 92% of packages

Maintenance96

Actively maintained with recent releases

Popularity9

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity58

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 ~1 days

Total

23

Last Release

19d ago

Major Versions

0.2.0 → v1.0.02026-07-13

### Community

Maintainers

![](https://www.gravatar.com/avatar/41fd7351d25e29dafa18068d0418eecf6bb47a7473aabe6bc674b4ca35e71805?d=identicon)[misaf](/maintainers/misaf)

---

Top Contributors

[![misaf](https://avatars.githubusercontent.com/u/8195685?v=4)](https://github.com/misaf "misaf (98 commits)")

---

Tags

laravelnewsletterfilamentphpmisafvendra

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/misaf-vendra-newsletter/health.svg)

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

###  Alternatives

[awcodes/richer-editor

A collection of extensions and tools to enhance the Filament Rich Editor field.

4018.1k11](/packages/awcodes-richer-editor)

PHPackages © 2026

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