Small Golang executable which runs an SMTP MTA gateway that accepts all mail and displays in web interface. Useful for debugging or development.
Deploy this app to Linode with a free $100 credit!
Inspired by MailCatcher, easier to install.
Built with Go - MailHog runs without installation on multiple platforms.
MailHog is an email testing tool for developers:
Download the latest release for your platform. Then read the deployment guide for deployment options.
brew update && brew install mailhog
Then, start MailHog by running mailhog
in the command line.
sudo apt-get -y install golang-go
go get github.com/mailhog/MailHog
sudo apt-get -y install golang-go
go install github.com/mailhog/MailHog@latest
Then, start MailHog by running /path/to/MailHog
in the command line.
E.g. the path to Go's bin files on Ubuntu is ~/go/bin/
, so to start the MailHog run:
~/go/bin/MailHog
pkg install mailhog
sysrc mailhog_enable="YES"
service mailhog start
Run it from Docker Hub or using the provided Dockerfile
Check out how to configure MailHog, or use the default settings: * the SMTP server starts on port 1025 * the HTTP server starts on port 8025 * in-memory message storage
See MailHog libraries for a list of MailHog client libraries.
mhsendmail is a sendmail replacement for MailHog.
It redirects mail to MailHog using SMTP.
You can also use MailHog sendmail ...
instead of the separate mhsendmail binary.
Alternatively, you can use your native sendmail
command by providing -S
, for example:
/usr/sbin/sendmail -S mail:1025
For example, in PHP you could add either of these lines to php.ini
:
sendmail_path = /usr/local/bin/mhsendmail
sendmail_path = /usr/sbin/sendmail -S mail:1025
MailHog is a rewritten version of MailHog, which was born out of M3MTA.
Clone this repository to $GOPATH/src/github.com/mailhog/MailHog
and type make deps
.
See the Building MailHog guide.
Requires Go 1.4+ to build.
Run tests using make test
or goconvey
.
If you make any changes, run go fmt ./...
before submitting a pull request.
Copyright © 2014 - 2017, Ian Kent (http://iankent.uk)
Released under MIT license, see LICENSE for details.
Please login to review this project.
No reviews for this project yet.
Comments (0)
Please login to join the discussion on this project.