PHPackages                             brendanpetty/rudimentary-email-logging - 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. brendanpetty/rudimentary-email-logging

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

brendanpetty/rudimentary-email-logging
======================================

Very simple Laravel package to allow log entries to be sent immediately as an email

v1.0.6(7mo ago)047GPL-3.0-or-laterPHPPHP ^8.1

Since Apr 29Pushed 7mo ago1 watchersCompare

[ Source](https://github.com/brendanpetty/rudimentary-email-logging)[ Packagist](https://packagist.org/packages/brendanpetty/rudimentary-email-logging)[ RSS](/packages/brendanpetty-rudimentary-email-logging/feed)WikiDiscussions main Synced today

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

rudimentary-email-logging
=========================

[](#rudimentary-email-logging)

Very simple Laravel package to allow log entries to be sent immediately as an email. Best used in a stack with a higher log level than the daily (or other less intrusive) log channel catching all the info etc.

Installation
============

[](#installation)

```
composer require brendanpetty/rudimentary-email-logging

```

in config/logging.php

```
use Brendanpetty\RudimentaryEmailLogging\EmailLogger;

'default' => env('LOG_CHANNEL', 'stack'),

'channels' => [
    'stack' => [
        'channels' => ['daily', 'email'],
    ],

    'email' => [
        'driver' => 'custom',
        'via' => EmailLogger::class,
        'level' => 'warning',
        'to' => env('MAIL_FROM_ADDRESS'),       // or 'email@address.com'
        'from' => env('MAIL_FROM_ADDRESS'),     // or 'email@address.com'
        'subject' => env('APP_NAME') . ' Log',  // or whatever
    ],
]

```

Usage
=====

[](#usage)

```
use Illuminate\Support\Facades\Log;

Log::warning('warning message');
Log::error('error message');

```

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance62

Regular maintenance activity

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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

Recently: every ~140 days

Total

10

Last Release

235d ago

Major Versions

v0.9.2 → v1.02024-04-29

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/40818011?v=4)[Brendan Petty - Totally Web Services](/maintainers/brendanpetty)[@brendanpetty](https://github.com/brendanpetty)

---

Top Contributors

[![brendanpetty](https://avatars.githubusercontent.com/u/40818011?v=4)](https://github.com/brendanpetty "brendanpetty (20 commits)")

### Embed Badge

![Health badge](/badges/brendanpetty-rudimentary-email-logging/health.svg)

```
[![Health](https://phpackages.com/badges/brendanpetty-rudimentary-email-logging/health.svg)](https://phpackages.com/packages/brendanpetty-rudimentary-email-logging)
```

###  Alternatives

[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[laravel/nightwatch

The official Laravel Nightwatch package.

36210.1M34](/packages/laravel-nightwatch)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135224.7k7](/packages/statamic-rad-pack-runway)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21318.6k3](/packages/ecotone-laravel)

PHPackages © 2026

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