Container running running MailHog to test email sending from applications.
WARNING : Mailhog is no longer maintained
-
Start mailhog :
docker compose up -d
-
Send an email :
telnet localhost 1025
HELO mailhog.devbox
MAIL FROM: <test@mailhog.devbox>
RCPT TO: <test@example.com>
DATA
Reply-to: noreply@mailhog.devbox
Subject: test email
this is a test email
.
quit