コントローラーでアクセスしたい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'
設定した設定値を取得する方法がわかりません。
助けてくれてありがとう。