ActionMailer not sending mail in development Rails 4

后端 未结 5 2072
野趣味
野趣味 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:28

    For anyone not using smtp, switching the delivery method to sendmail helped me in addition to explicitly setting deliveries to be performed:

    config.action_mailer.delivery_method = :sendmail
    

提交回复
热议问题