我在 development.rb 中有一些电子邮件设置,我想在我的控制器中访问。
中的设置development.rb
是:
config.notify_submited_transaction = 'anil@swiftsetup.com,anildbest83@gmail.com'
config.notify_approved_transaction = 'anil@swiftsetup.com'
在我的控制器/动作中,我正在尝试这个:
@to = Rails.env.notify_submited_transaction
@subject = 'AM - Vendor Submitted Transaction'
AmMailer.vendor_submited_transaction(@to, @subject, current_user).deliver
这虽然会导致错误:
undefined method `notify_submited_transaction'
我不确定如何获取我设置的配置值。
谢谢你的帮助。