I am using exception_notification gem with my rails app and I want to send error report email to multiple email id. How I can do that ?
config.middleware.use ExceptionNotification::Rack,
email: { email_prefix: "[Ay Error] ",
sender_address: %{"Ay" <[email protected]>},
exception_recipients: %w{[email protected]}
}
end
I am using mailboxer gem to send emails. I tried searching on google but i can't find solution. Thanks in advance
Did you try just adding it to the list? Like so?
exception_recipients: %w{[email protected] [email protected]}