dockerfiles/mailhog
kev 72a70a274c update mailhog 2022-02-15 15:24:54 +08:00
..
data update mailhog 2022-02-15 15:24:54 +08:00
README.md update mailhog 2022-02-15 15:24:54 +08:00
docker-compose.yml update mailhog 2022-02-15 15:24:54 +08:00

mailhog

MailHog is an email testing tool for developers:

  • Configure your application to use MailHog for SMTP delivery
  • View messages in the web UI, or retrieve them with the JSON API
  • Optionally release messages to real SMTP servers for delivery
$ mkdir data
$ chown 1000:1000 data
$ docker-compose up -d
$ curl http://localhost:8025

$ ncat -C localhost 1025
HELO
MAIL FROM: <kevin@gmail.com>
RCPT TO: <sarah@yahoo.com>
DATA
Subject: test

This is a test message.
.
QUIT
^D (press Ctrl-D to exit)