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" <adi@yahoo.com>},
exception_recipients: %w{adi1@yahoo.com}
}
end
I am using mailboxer gem to send emails. I tried searching on google but i can't find solution. Thanks in advance