1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/mailhog/README.md

30 lines
597 B
Markdown
Raw Normal View History

2021-09-02 10:02:39 +00:00
mailhog
=======
[MailHog][1] 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
2022-02-15 07:24:54 +00:00
```bash
2021-09-02 10:02:39 +00:00
$ 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)
```
[1]: https://github.com/mailhog/MailHog/blob/master/docs/CONFIG.md