PHPackages                             r0bdiabl0/laravel-email-tracker-nova - 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. r0bdiabl0/laravel-email-tracker-nova

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

r0bdiabl0/laravel-email-tracker-nova
====================================

Laravel Nova v4/v5 admin panel for Laravel Email Tracker - resources, metrics, and dashboards

v1.0.0(5mo ago)00MITPHPPHP ^8.2

Since Jan 10Pushed 5mo agoCompare

[ Source](https://github.com/r0bdiabl0/laravel-email-tracker-nova)[ Packagist](https://packagist.org/packages/r0bdiabl0/laravel-email-tracker-nova)[ Docs](https://github.com/r0bdiabl0/laravel-email-tracker-nova)[ RSS](/packages/r0bdiabl0-laravel-email-tracker-nova/feed)WikiDiscussions main Synced today

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

Laravel Email Tracker - Nova Plugin
===================================

[](#laravel-email-tracker---nova-plugin)

[![Latest Version on Packagist](https://camo.githubusercontent.com/d4c5339aa01680cb07f5895cff59ea8949f6ab55e9738f81360144a8b4ebb8e5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f723062646961626c302f6c61726176656c2d656d61696c2d747261636b65722d6e6f76612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/r0bdiabl0/laravel-email-tracker-nova)[![License](https://camo.githubusercontent.com/9cfe093d90f30247d00f9b6ddad955e289069960f5e1b5a5ef16d4fc33d8687e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f723062646961626c302f6c61726176656c2d656d61696c2d747261636b65722d6e6f76612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/r0bdiabl0/laravel-email-tracker-nova)

A **Laravel Nova v4/v5 admin panel plugin** for [Laravel Email Tracker](https://github.com/r0bdiabl0/laravel-email-tracker). Provides resources for managing your email tracking data.

Table of Contents
-----------------

[](#table-of-contents)

- [Features](#features)
- [Requirements](#requirements)
- [Installation](#installation)
- [Resources](#resources)
- [Configuration](#configuration)
- [Customizing Resources](#customizing-resources)
- [Related Packages](#related-packages)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

Features
--------

[](#features)

- **Sent Emails Resource** - Browse, search, and filter sent emails
- **Bounces Resource** - View bounce records with type badges
- **Complaints Resource** - Track spam complaints
- **Provider Filtering** - Filter by email provider
- **Read-Only** - Safe viewing without accidental modifications
- **Nova v4 &amp; v5 Compatible**

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

[](#requirements)

- PHP 8.2+
- Laravel 11.0+
- Laravel Nova 4.0+ or 5.0+
- [r0bdiabl0/laravel-email-tracker](https://github.com/r0bdiabl0/laravel-email-tracker) ^1.0

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

[](#installation)

First, install the main email tracker package if you haven't:

```
composer require r0bdiabl0/laravel-email-tracker
php artisan email-tracker:install
```

Then install the Nova plugin:

```
composer require r0bdiabl0/laravel-email-tracker-nova
```

The resources are auto-registered via the service provider.

Optionally publish the config:

```
php artisan vendor:publish --tag=email-tracker-nova-config
```

Resources
---------

[](#resources)

### Sent Emails

[](#sent-emails)

Browse all tracked emails with:

- Search by recipient email or message ID
- Filter by provider (SES, Resend, Mailgun, etc.)
- Filter by delivery status
- View delivery, bounce, and complaint status

### Bounces

[](#bounces)

View bounce records with:

- Permanent vs Transient type badges
- Provider filtering
- Link to original sent email

### Complaints

[](#complaints)

View spam complaints with:

- Type badge (spam, abuse)
- Provider filtering
- Link to original sent email

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

[](#configuration)

```
// config/email-tracker-nova.php

return [
    'navigation' => [
        'group' => 'Email Tracker',
    ],

    'resources' => [
        'sent_emails' => true,
        'bounces' => true,
        'complaints' => true,
    ],

    'default_days' => 30,
];
```

Customizing Resources
---------------------

[](#customizing-resources)

If you need to customize the resources, you can extend them:

```
namespace App\Nova;

use R0bdiabl0\EmailTrackerNova\Nova\SentEmail as BaseSentEmail;

class SentEmail extends BaseSentEmail
{
    public function fields(NovaRequest $request): array
    {
        return array_merge(parent::fields($request), [
            // Add your custom fields
        ]);
    }
}
```

Then register your custom resource instead in `NovaServiceProvider`:

```
public function resources()
{
    Nova::resources([
        \App\Nova\SentEmail::class,
        // ...
    ]);
}
```

Related Packages
----------------

[](#related-packages)

- [laravel-email-tracker](https://github.com/r0bdiabl0/laravel-email-tracker) - Main email tracking package (required)
- [laravel-email-tracker-filament](https://github.com/r0bdiabl0/laravel-email-tracker-filament) - Filament admin panel plugin

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

[](#contributing)

Contributions are welcome! Please feel free to submit a Pull Request.

1. Fork the repository
2. Create a feature branch
3. Make your changes with tests
4. Run `composer test` and `composer format`
5. Submit a pull request

For bugs and feature requests, please [open an issue](https://github.com/r0bdiabl0/laravel-email-tracker-nova/issues).

Credits
-------

[](#credits)

- [Robert Pettique](https://github.com/r0bdiabl0) - Author and maintainer

License
-------

[](#license)

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

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance70

Regular maintenance activity

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

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

175d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/432557?v=4)[Robert](/maintainers/r0bdiabl0)[@r0bdiabl0](https://github.com/r0bdiabl0)

---

Top Contributors

[![r0bdiabl0](https://avatars.githubusercontent.com/u/432557?v=4)](https://github.com/r0bdiabl0 "r0bdiabl0 (6 commits)")

---

Tags

laravelemailtrackingdashboardanalyticsadminnova

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/r0bdiabl0-laravel-email-tracker-nova/health.svg)

```
[![Health](https://phpackages.com/badges/r0bdiabl0-laravel-email-tracker-nova/health.svg)](https://phpackages.com/packages/r0bdiabl0-laravel-email-tracker-nova)
```

###  Alternatives

[inspheric/nova-email-field

A Laravel Nova email field.

33514.2k1](/packages/inspheric-nova-email-field)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17878.9k](/packages/markwalet-nova-modal-response)[dniccum/custom-email-sender

A tool for Laravel's Nova administrator panel that allows you to send custom email messages that within your application that leverages the applications existing settings and configurations.

6236.7k](/packages/dniccum-custom-email-sender)[christophrumpel/nova-notifications

A Laravel Nova tool for handling Laravel Notifications.

7626.3k](/packages/christophrumpel-nova-notifications)[mydnic/laravel-subscribers

Easily Manage Internal Newsletter Subscribers in Laravel — with campaigns, mail sending, and tracking

265.1k](/packages/mydnic-laravel-subscribers)

PHPackages © 2026

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