filippo-toso / laravel-mailog
Log your emails to the database and view them in a simple web interface
Requires
- php: >=8.1
- illuminate/config: >=9.0
- illuminate/console: >=9.0
- illuminate/contracts: >=9.0
- illuminate/database: >=9.0
- illuminate/http: >=9.0
- illuminate/mail: >=9.0
- illuminate/view: >=9.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- laravel/pint: ^1.0
- pestphp/pest: ^3.0
- spatie/ray: ^1.28
README
This package allows you to store all your application outgoing email into a database and (optionally) view them using the integrated Web UI.
You can use it as a mail transport (no email is delivered) or as an event listener (all emails are delivered normally but also logged into the database).
Why does this exist?
Maybe you are asking yourself why I built this package when there's the log driver or services like Mailtrap, etc.
I work with a lot of institutional customers (banks, public bodies, you name it...). These customers are very picky about where their data is stored (ie. Are Mailtrap data centers in the EU? How are they secured? Who has access to them? And the list goes on, and on, and on...). This package offers a self-hosted solution that works perfectly in both test and production environments and meets their stringent requirements.
Installation
Install the package using composer:
composer require filippo-toso/laravel-mailog
If you want/need to customize the configuration (ie. use a different database for the logging, etc.), publish the configuration file and change it accordingly:
php artisan vendor:publish --tag="mailog-config"
Publish the migrations and change them accordingly:
php artisan vendor:publish --tag="mailog-migrations"
Then, execute the migrations:
php artisan migrate
Use it as a Mail Transport
In your config/mail.php
file add the mailog mailer as shown below.
return [ // ... 'mailers' => [ // ... 'mailog' => [ 'transport' => 'mailog', ], ], ];
Then edit your .env file as follows:
MAIL_MAILER=mailog
Use it as an Event Listener
Just edit the config/mailog.php
file as follows:
'listen' => true,
Access the Web UI
If you want to use the built-in web UI, you can register the routes in your web.php
file.
Then you'll be able to access the UI using the /mailog/messages
url.
Route::middleware('auth')->group(function () { // ... \FilippoToso\LaravelMailog\Support\MailogRoutes::register(); });
If you want to customize the UI, you can publish the views as follows:
php artisan vendor:publish --tag="mailog-views"
You can also override the FilippoToso\LaravelMailog\Http\Controllers\MessageController
class and change its behaviour. For instance you could add a filter for your tenant:
use FilippoToso\LaravelMailog\Http\Controllers\Concerns\IsMailogController; class MailogMessageController extends Controller { use IsMailogController { query as mailogQuery; } /** * The query that filters the messages * * @param array $filters * @return Builder */ protected function query(array $filters) { return parent::mailogQuery() ->where('tenant_id','=', tenant('id')); } }
Then you have to update your routes file to point to the right controller.
You can take inspiration from the FilippoToso\LaravelMailog\Support\Routes::register()
method.
Overriding the Mail Transport behaviour
In the config/mailog.php
file you can specify a class to use as a transport. For instance, you can override the provided MailogTransport
class and add the support for tenancy as follows:
use FilippoToso\LaravelMailog\Transport\MailogTransport; use Symfony\Component\Mime\Email; class MailogTransportWithTenant extends MailogTransport { /** * Build the message data to be stored in the database * You can override this method to add more fields to the message * * @param $messageId * @param Email $converdedEmail * @return array */ protected function messageData(string $messageId, Email $converdedEmail) { return array_merge(parent::messageData($messageId, $converdedEmail),[ 'tenant_id' => tenant('id'), ]); } }
Please beware, the use of tenant('id')
for identifing the tenant foreign key is just an example taken from the stancl/tenancy
package. Depending on how you are implementing the tenancy, you should adapt the code as needed.
Other useful things to know
The package includes a mailog:purge-messages
command. You can schedule it in the scheduler and configure its behaviour in the purge
section of the config/mailog.php
file