tkeer/mailbase

Catch laravel emails for local development
23,866 104
Install
composer require tkeer/mailbase
Latest Version:v2.0.1
License:MIT
Last Updated:Jul 17, 2024
Links: GitHub  ·  Packagist
Maintainer: tkeer

Laravel Mail Catcher Driver

This package include a new mailbase driver which will catch all the sent emails and save it to the database. It then exposes a route /mailbase which you can visit to preview all the mails.

Mailbase preview

Installation

Laravel 7.x or higher

To install run the following command in your terminal:

composer require tkeer/mailbase --dev

Then run the migration

php artisan migrate

Finally, change MAIL_MAILER to mailbase in your .env file:

MAIL_MAILER=mailbase

Laravel (5.x|6.x)

composer require tkeer/mailbase ^0.4 --dev
php artisan migrate

change MAIL_DRIVER to mailbase in your .env file:

Usage

Send dummy email

You can run following command to test mailbase driver by sending a dummy email.

php artisan mailbase:test

Clearing Saved Emails

If you want to clear any of the saved emails that are in the database, use the following command:

php artisan mailbase:clear

Related Packages

frontier-sh/sinkhole-laravel

Laravel mail transport for Sinkhole — a Cloudflare Worker email trap

2,216 0
mmanos/laravel-localpushqueue

A local push queue driver for Laravel 4.

840 1
yozaz/laravel-swiftmailer

Laravel and SwiftMailer integration fix for Queued deamon workers

73,822 24
spatie/laravel-tail

Easily tail application logs

2,730,701 749