An email and SMTP testing tool with API for developers
Website • Documentation • API
Mailpit is a small, fast, low memory, zero-dependency, multi-platform email testing tool & API for developers.
It acts as an SMTP server, provides a modern web interface to view & test captured emails, and includes an API for automated integration testing.
Mailpit was originally inspired by MailHog which is no longer maintained and hasn’t seen active development or security updates for a few years now.
List-Unsubscribe
syntax validationThe Mailpit web UI listens by default on http://0.0.0.0:8025
and the SMTP port on 0.0.0.0:1025
.
Mailpit runs as a single binary and can be installed in different ways:
brew install mailpit
(to run automatically in the background: brew services start mailpit
)mailpit
pkg install mailpit
Linux & Mac users can install it directly to /usr/local/bin/mailpit
with:
sudo bash < <(curl -sL https://raw.githubusercontent.com/axllent/mailpit/develop/install.sh)
Static binaries can always be found on the releases. The mailpit
binary can be extracted and copied to your $PATH
, or simply run as ./mailpit
.
See Docker instructions for 386, amd64 & arm64 images.
To build Mailpit from source, see Building from source.
Run mailpit -h
to see options. More information can be seen in the docs.
If installed using homebrew, you may run brew services start mailpit
to always run mailpit automatically.
Please refer to the documentation on how to easily test email delivery to Mailpit.
Mailpit’s SMTP server (default on port 1025), so you will likely need to configure your sending application to deliver mail via that port.
A common MTA (Mail Transfer Agent) that delivers system emails to an SMTP server is sendmail
, used by many applications, including PHP.
Mailpit can also act as substitute for sendmail. For instructions on how to set this up, please refer to the sendmail documentation.