Questions tagged [exception-notification]

The Exception Notification gem provides a set of notifiers for sending notifications when errors occur in a Rack/Rails application.

The built-in notifiers can deliver notifications by email, campfire rooms or via webhooks.

There's a great Railscast about Exception Notification you can see that may help you getting started.

See https://github.com/rails/exception_notification/

38 questions
0
votes
3 answers

Rails4, Exception Notifier not change sender_address

Our Rails Application using ExceptionNotifier Gem and change configuration file Exception Mail is working good But sender mail is not Noreply < noreply@our_domain.com > Always sender is my email_address My production.rb file…
kai
  • 492
  • 3
  • 18
0
votes
1 answer

Rails Exception Notification with Sendgrid

I have installed the exception notifications gem and I am currently using sendgrid as part of my app email sign up/login process. Below is my github gist which i added the config code in my production.rb but not sure why I am not receiving any…
drew578
  • 121
  • 1
  • 2
  • 7
0
votes
2 answers

exception_notification 4.0.1 and Rails 3.2.8 not working

I'm trying to get exception_notification and rails to work together. I have looked at a bunch of other questions, and read through the ReadMe heavily on the exception_notification gem page. However, most other tutorials and questions all seem to be…
bwest87
  • 1,223
  • 13
  • 12
0
votes
1 answer

what is the mailer name of Exception Notification?

I've got a problem with my smtp settings and Exception Notification gem. Because I need to send mails from multiple addresses I used the setup described in this post: http://justinreid.com/configure-actionmailer-to-use-multiple-smtp-settings/ Ruby…
coderuby
  • 1,188
  • 1
  • 11
  • 26
0
votes
1 answer

How do i send an email using exception_notifier gem manually?

I am trying the following code: ExceptionNotifier::Notifier.exception_notification(env, exception).deliver But this message keep on appearing: A sender (Return-Path, Sender or From) required to send a message Any idea why this is happening and how…
Kamilski81
  • 14,409
  • 33
  • 108
  • 161
0
votes
1 answer

Mailers sends empty content

Using Rails 3.1.1 and Heroku + exception_notification gem 3.0.0 Starting yesterday I started receiving my notification_notifier emails with an empty content. The subject and all is just as it used to be but the "message has no content". It usually…
Christoffer
  • 2,271
  • 3
  • 26
  • 57
0
votes
1 answer

Rails exception notifier -- add to database

We have exception notifier set up on our server, though would like a back-up solution, if the email server is down, that would let us log exceptions in the database. How is exception notifier listening to every method call and can I listen…
dansch
  • 6,059
  • 4
  • 43
  • 59
0
votes
1 answer

ActionMailer not using correct smtp_settings with ExceptionNotification

For some reason it seems like my smtp settings are not being applied. I have them set up in application.rb, # application.rb config.action_mailer.delivery_method = :smtp config.action_mailer.smtp_settings = { :address =>…
psugar
  • 1,897
  • 2
  • 18
  • 27
1 2
3