Skip to main content

MailHog Support

Introduction

MailHog provides us with a way to test and develop emails during local development by catching all the emails sent by the application and sending them to the service installed using Docker.

caution

MailHog can be installed using Docker, by following the Docker Support Guide.

Enabling MailHog Support

config.php
<?php

use WPN\Plugins\Mailhog;

return [
'plugins' => [
Mailhog::class,
]
];