Created
July 20, 2012 07:28
-
-
Save samvermette/3149287 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rescue_from Exception, :with => :mail_exception | |
def mail_exception(exception) | |
mail = Mail.new do | |
from 'Rescuer (domain.com) <[email protected]>' | |
to '[email protected]' | |
subject exception.inspect | |
body exception.backtrace[0..10].join("\n") | |
end | |
mail.delivery_method :sendmail | |
mail.deliver | |
raise exception | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment