ActionMailer not sending mail in development Rails 4

后端 未结 5 2079
野趣味
野趣味 2020-12-02 16:58

Why is this mailer not sending any mail? (Or any ideas for debugging?)

In my_app/config/environments/development.rb I have this code:

  config.action         


        
5条回答
  •  清歌不尽
    2020-12-02 17:16

    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...

提交回复
热议问题