PHPackages                             alverated/laravel-error-mailer - 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. [Framework](/categories/framework)
4. /
5. alverated/laravel-error-mailer

ActiveLibrary[Framework](/categories/framework)

alverated/laravel-error-mailer
==============================

Error Mailer for Laravel

v1.1.0(6y ago)4154MITPHP &gt;=5.4.0

Since Jul 1Compare

[ Source](https://github.com/alverated/laravel-error-mailer)[ Packagist](https://packagist.org/packages/alverated/laravel-error-mailer)[ RSS](/packages/alverated-laravel-error-mailer/feed)WikiDiscussions Synced 6d ago

READMEChangelog (1)DependenciesVersions (5)Used By (0)

Laravel-Error-Mailer
====================

[](#laravel-error-mailer)

Error Mailer for Laravel 5.2

[![Latest Stable Version](https://camo.githubusercontent.com/8d73de54671c0e9efdb4bd29fc30901c93ae200e8af33db1528a75b53e8a19fc/68747470733a2f2f706f7365722e707567782e6f72672f616c766572617465642f6c61726176656c2d6572726f722d6d61696c65722f762f737461626c652e706e67)](https://packagist.org/packages/alverated/laravel-error-mailer) [![Total Downloads](https://camo.githubusercontent.com/3a7bfd96e2ad84e3a30881dce1629dbbab190720c0c17f214291e225bbc3e426/68747470733a2f2f706f7365722e707567782e6f72672f616c766572617465642f6c61726176656c2d6572726f722d6d61696c65722f646f776e6c6f6164732e706e67)](https://packagist.org/packages/alverated/laravel-error-mailer)

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

[](#installation)

Laravel Error Mailer can be installed via [Composer](http://getcomposer.org) by requiring the `alverated/laravel-error-mailer` package in your project's `composer.json`.

```
{
    "require": {
        "alverated/laravel-error-mailer": "dev-master"
    }
}
```

Register the service provider with the application. Open up `config/app.php` and find the `providers` key.

```
'providers' => [
    // ...
    Alverated\LaravelErrorMailer\ErrorMailerServiceProvider::class,
],
```

Publish the configurations Run this on the command line from the root of your project.

```
$ php artisan vendor:publish

```

A configuration and blade file will be publish to `config/laravel-error-mailer.php` and `views/vendor/mailer.blade.php`. Update your settings in the generated configuration file.

\##Usage Open `app/Exceptions/Handler.php` and import `Alverated\LaravelErrorMailer\ErrorMailer`

```
//...
use Alverated\LaravelErrorMailer\ErrorMailer;
```

and add these two lines of codes to `public function report(Exception $e)` below `parent::report($e);`

```
public function report(Exception $e)
{
    parent::report($e);

    // add this code
    if ($this->shouldReport($e)) {
        $err = new ErrorMailer($e);
        $err->sendError();
    }
}
```

\###Note Add this to your composer.json if you're using any of these drivers

```
{
    "require": {
        "guzzlehttp/guzzle": "~5.3|~6.0",
        "aws/aws-sdk-php": "~3.0"
    }
}
```

###  Health Score

28

—

LowBetter than 51% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity61

Established project with proven stability

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

Total

2

Last Release

2207d ago

### Community

Maintainers

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

---

Tags

frameworklaravel error mailer

### Embed Badge

![Health badge](/badges/alverated-laravel-error-mailer/health.svg)

```
[![Health](https://phpackages.com/badges/alverated-laravel-error-mailer/health.svg)](https://phpackages.com/packages/alverated-laravel-error-mailer)
```

###  Alternatives

[hemp/presenter

Easy Model Presenters in Laravel

247625.4k1](/packages/hemp-presenter)[pestphp/pest-plugin-stressless

Stressless plugin for Pest

681.1M18](/packages/pestphp-pest-plugin-stressless)[wpstarter/framework

The WpStarter Framework - Laravel Framework for WordPress

1710.3k5](/packages/wpstarter-framework)

PHPackages © 2026

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