Sending mail with Rails 3 in development environment

前端 未结 8 1288
执念已碎
执念已碎 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:15

    I have the following in config/environments/development.rb

    config.action_mailer.raise_delivery_errors = true
    config.action_mailer.perform_deliveries = true
    

    The actual mail-configuration, config.actionmailer.* i have placed in config\application.rb.

    Hope this helps :)

提交回复
热议问题