ActionMailer not sending mail in development Rails 4

You should add

config.action_mailer.perform_deliveries = true

as by default this is on false, preventing mails to be sent from your development environment…

Leave a Comment