Mailit, A Tiny REST API to Send Emails
github.com
Mailit, A Tiny REST API to Send Emails
1–7 of 7 posts
Re: Mailit, A Tiny REST API to Send Emails
#2Also, I'd like to share my favorite email-related development tool, MailCatcher [0]
Running these kinds tools as part of a docker-compose setup locally makes a huge difference, especially for end-to-end testing.
Re: Mailit, A Tiny REST API to Send Emails
#3Re: Mailit, A Tiny REST API to Send Emails
#4i my tiny sideproject, sending emails with nodemailer is like 8 lines of code.
and for anything more complicated this is not really enough.
Re: Mailit, A Tiny REST API to Send Emails
#5Discussion from three days ago: https://news.ycombinator.com/item?id=14898350
Re: Mailit, A Tiny REST API to Send Emails
#6Looks great! Also, I'd like to share my favorite email-related development tool, MailCatcher [0] Running these kinds tools as part of a docker-compose setup locally makes a huge difference, especially for end-to-end testing. [0] https://mailcatcher.me/
Similar to MailCatcher, but it is built with Go so you dont need to compile etc - it just runs. I find it easier to install.
Re: Mailit, A Tiny REST API to Send Emails
#7Looks great! Also, I'd like to share my favorite email-related development tool, MailCatcher [0] Running these kinds tools as part of a docker-compose setup locally makes a huge difference, especially for end-to-end testing. [0] https://mailcatcher.me/
I used to use MailCatcher - but I've switched to MailHog[0] Similar to MailCatcher, but it is built with Go so you dont need to compile etc - it just runs. I find it easier to install. [0] https://github.com/mailhog/MailHog
One thing that I use MailCatcher for is its REST API. I can easily check for new messages from tests (eg: Cucumber).
I don't see anything about that for MailHog on its github page.