Skip to content

dcblogdev/laravel-sent-emails

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Community

There is a Discord community. https://discord.gg/VYau8hgwrm For quick help, ask questions in the appropriate channel.

Record and view all sent emails

Latest Version on Packagist Total Downloads

Example UI

Watch a video walkthrough https://www.youtube.com/watch?v=Oj_OF5n4l4k&feature=youtu.be

Sample UI

Installation

Note version 2+ requires Laravel 9+

You can install the package via composer:

composer require dcblogdev/laravel-sent-emails

Migration

You can publish the migration with:

php artisan vendor:publish --provider="Dcblogdev\LaravelSentEmails\SentEmailsServiceProvider" --tag="migrations"

After the migration has been published you can the tables by running the migration:

php artisan migrate

Config

You can publish the config with:

php artisan vendor:publish --provider="Dcblogdev\LaravelSentEmails\SentEmailsServiceProvider" --tag="config"

After the config has been published you can change the route path for sentemails from /sentemails to anything you like such as /admin/sentemails:

'routepath' => 'sentemails'

Views

You can publish the view with:

php artisan vendor:publish --provider="Dcblogdev\LaravelSentEmails\SentEmailsServiceProvider" --tag="views"

The views will be published to resources/views/vendor/sentemails

You can change the views to match your theme if desired.

Usage

As soon as a email is sent it will be added to a database table and will be viewable in /admin/sentemails.

Note you have to be logged in to be able to see admin/sentemails, if you are not logged in when you attempt to see admin/sentemails you will be redirected to a login route.

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email dave@dcblog.dev instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.