- Sending emails to clients? But not receiving all answers?
- Tired of emails where people add points in line?
hi Questionizer.
- Clone it
bundle install
We're using MailCatcher [http://mailcatcher.me/]
- Install it:
gem install mailcatcher
- Launch it:
mailcatcher
- Alternatively if you are in vagrant
mailcatcher --http-ip=0.0.0.0
- Remember that you need the
1080
port opened in your vagrant - Browse it:
http://localhost:1080/
- Configure it:
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = { :address => "localhost", :port => 1025 }
Remember that you need the 1080
port opened in your vagrant
We are not adding this file to the Gemfile as it not recommended by the MailCatcher mantainer "Please don't put mailcatcher into your Gemfile. It will conflict with your applications gems at some point."