Sending mail with Rails 3 in development environment

前端 未结 8 1261
执念已碎
执念已碎 2020-12-04 06:29

I\'m sure this has been asked a million times before but I can\'t find anything that works for me so I\'m asking again!

I just need a way of sending emails using Act

8条回答
  •  一生所求
    2020-12-04 07:14

    ActionMailer::Base.delivery_method = :sendmail
    and
    config.action_mailer.perform_deliveries = true

    were the two necessary steps that got me over this issue

提交回复
热议问题