PHPackages                             andrefigueira/laramailer - 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. andrefigueira/laramailer

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

andrefigueira/laramailer
========================

A simple mailing package using Laravel Mail and Blade for sending emails with an expressive syntax, and also the ability to store emails in a database for future viewing

1.0.6(9y ago)266MITHTML

Since Mar 20Pushed 9y ago1 watchersCompare

[ Source](https://github.com/andrefigueira/laramailer)[ Packagist](https://packagist.org/packages/andrefigueira/laramailer)[ RSS](/packages/andrefigueira-laramailer/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (9)Used By (0)

laramailer
==========

[](#laramailer)

A re-usable mailer component, which can send emails, and also store them for later use

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

[](#installation)

```
composer require andrefigueira\laramailer

```

Setup
-----

[](#setup)

### Service provider

[](#service-provider)

Add the `LaramailerServiceProvider` to your `config/app.php`

```
Laramailer\Providers\LaramailerServiceProvider::class

```

Add the `Uuid` class as an alias in your `config/app.php`

```
'Uuid'      => Rhumsaa\Uuid\Uuid::class,

```

### Migrations and views publish

[](#migrations-and-views-publish)

Run `php artisan vendor:publish` to copy the views and migrations

### Database table

[](#database-table)

Run `php artisan migrate` to install the emails table

### Add the config variables to your env file

[](#add-the-config-variables-to-your-env-file)

```
MAIL_NOREPLY=noreply@email.com
MAIL_NOREPLY_NAME=ServiceName

```

### Mail setup

[](#mail-setup)

Be sure to configure your mail driver too! I recommend mailgun

Usage
-----

[](#usage)

```
use Laramailer\Utility\Mailer;

$mailer = new Mailer();

$mailer
    ->template('andrefigueira.laramailer.emails.default')
    ->to('andre@email.com')
    ->subject('Hey Andre!)
    ->with([
        'foo' => 'bar',
    ])
    ->send()
;

```

###  Health Score

30

—

LowBetter than 65% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity68

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

Every ~68 days

Recently: every ~103 days

Total

7

Last Release

3290d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2a901aad2498f1239d81fe941bceb28b474885501b0bb92509c810aaacad1227?d=identicon)[andre](/maintainers/andre)

---

Top Contributors

[![andrefigueira](https://avatars.githubusercontent.com/u/806006?v=4)](https://github.com/andrefigueira "andrefigueira (31 commits)")

### Embed Badge

![Health badge](/badges/andrefigueira-laramailer/health.svg)

```
[![Health](https://phpackages.com/badges/andrefigueira-laramailer/health.svg)](https://phpackages.com/packages/andrefigueira-laramailer)
```

###  Alternatives

[laravel-notification-channels/backport

Backport of the Laravel Notification System for Laravel 5.1 and 5.2

26169.5k](/packages/laravel-notification-channels-backport)[azine/email-bundle

Symfony3 Bundle to send html- &amp; txt-emails (notification about events on your web-app or newsletters etc. scheduled/aggregated) to your users.

667.8k](/packages/azine-email-bundle)[yunwuxin/think-notification

The Notification Library For ThinkPHP6

422.2k4](/packages/yunwuxin-think-notification)[juhasev/laravel-ses

Allows you to track opens, deliveries, bounces, complaints and clicked links when sending emails through Laravel and Amazon SES

1710.0k](/packages/juhasev-laravel-ses)

PHPackages © 2026

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