Reputation: 5355
I am trying get mailcatcher working with my Rails 3.2.x app. Added mailcatcher gem and bundled, and...
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: "localhost",
port: 1025,
}
I get the mailcatcher console at localhost:1080, but I get nothing when mails is sent. I am using delayed job, and can see delayed jobs being created and run, so I know the mails are being triggered in dev. What is my next step in troubleshooting this?
Upvotes: 2
Views: 3366
Reputation: 5355
I ended up using https://github.com/ryanb/letter_opener. This worked out of the box for me.
Upvotes: 1