PHPackages                             logikool/laravel-email-logger - 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. logikool/laravel-email-logger

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

logikool/laravel-email-logger
=============================

Keep track in your database of all emails sent from within your application.

1.0(8y ago)015[1 issues](https://github.com/Logikool/laravel-email-logger/issues)MITPHP

Since Mar 3Pushed 8y agoCompare

[ Source](https://github.com/Logikool/laravel-email-logger)[ Packagist](https://packagist.org/packages/logikool/laravel-email-logger)[ RSS](/packages/logikool-laravel-email-logger/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

Laravel Email Logger
====================

[](#laravel-email-logger)

This package provides a simple logging mechanism for all emails that are sent in your application. It uses Laravel's built in events which the logger listens to and creates a database entry from a `Swift_Message` object.

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

[](#installation)

1. Install via composer

```
composer require logikool/laravel-email-logger
```

2. If you are not using package auto-discovery, add the service provider to your `app.php` configuration file.

```
Logikool\LaravelEmailLogger\LaravelEmailLoggerServiceProvider::class,
```

3. Publish configuration and migration files

```
php artisan vendor:publish --provider="Logikool\LaravelEmailLogger\LaravelEmailLoggerServiceProvider"
```

4. Run the migration

```
php artisan migrate
```

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

[](#configuration)

Laravel Email Logger has it's own Eloquent model and Event Listeners, but if you need to, you can change those in your `email-logger.php`.

```
return [

  'model' => \Logikool\LaravelEmailLogger\Models\EmailLog::class,

  'listeners' => [
    'MessageSending' => \Logikool\LaravelEmailLogger\Listeners\MessageSending::class,
    'MessageSent' => \Logikool\LaravelEmailLogger\Listeners\MessageSent::class,
  ]

];
```

`MessageSending` and `MessageSent` are Laravel's built-in events and you can use your own listeners by providing a fully qualified class name.

`EmailLog` is a model which you can replace or extend if you need to.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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

2991d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0e89e6ec82648fa59f3725e87e5bb6af05c3d3ebe220bb8e6fd8928ed40fe977?d=identicon)[logikool](/maintainers/logikool)

---

Top Contributors

[![Logikool](https://avatars.githubusercontent.com/u/37022463?v=4)](https://github.com/Logikool "Logikool (1 commits)")

### Embed Badge

![Health badge](/badges/logikool-laravel-email-logger/health.svg)

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

###  Alternatives

[spatie/laravel-activitylog

A very simple activity logger to monitor the users of your website or application

5.8k45.4M309](/packages/spatie-laravel-activitylog)[spatie/laravel-health

Monitor the health of a Laravel application

85810.0M83](/packages/spatie-laravel-health)[masterro/laravel-mail-viewer

Easily view in browser outgoing emails.

6392.1k](/packages/masterro-laravel-mail-viewer)[yadahan/laravel-authentication-log

Laravel Authentication Log provides authentication logger and notification for Laravel.

416632.8k5](/packages/yadahan-laravel-authentication-log)[flarum/core

Delightfully simple forum software.

211.3M1.9k](/packages/flarum-core)[directorytree/metrics

Record metrics in your Laravel application

26027.8k](/packages/directorytree-metrics)

PHPackages © 2026

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