我有一个发送电子邮件的应用程序,我在 application.rb 文件中配置了 mandrill。
config.action_mailer.smtp_settings = {
address: 'smtp.mandrillapp.com',
port: 587,
domain: 'translatr.herokuapp.com',
user_name: ENV["MANDRILL_USERNAME"],
password: ENV["MANDRILL_PASSWORD"],
authentication: 'plain',
enable_starttls_auto: true }
但是,我不想在开发和测试期间发送邮件,但我在生产中发送邮件。我是通过将此设置移动到 production.rb 来做到这一点吗?还是有其他方法可以做到这一点?