Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 863 Bytes

File metadata and controls

41 lines (28 loc) · 863 Bytes

Mailpit

Mailpit is an email & SMTP testing tool with API for developers.

Usage with docker

  • Start mailhog : docker compose up -d

  • Send an email : telnet localhost 1025 :

HELO mailpit.dev.localhost
MAIL FROM: <admin@mailpit.dev.localhost>
RCPT TO: <test@example.com>
DATA
From: admin@mailpit.dev.localhost
To: test@example.com
Reply-to: noreply@mailpit.dev.localhost
Subject: test email with mailpit

this is a test email with mailpit
.
QUIT

Mailpit Screenshot

Resources