mailtrap
personal rails development rule #342: don’t check your email while coding.
mailtrap is a super simple mock SMTP server for rails development. it also comes with a mock pop3 server if you want to use it with a GUI like apple mail, but i prefer to just tail the log file in a terminal window. getting up and running with mailtrap is super easy: =>
# install the gem
gem install mailtrap
# start mailtrap
mailtrap start
# tail the log
tail -f /var/tmp/mailtrap.log