Skip to content

julianlconnor/rack-exception_notifier

 
 

Repository files navigation

rack-exception_notifier Build Status

Rack-exception_notifier is a piece of simple rack middleware that will rescue exceptions and send email using the mail gem. This gem is based on Rack::MailExceptions in rack-contrib.

Usage

First include rack-exception_notifier in your Gemfile:

gem 'rack-exception_notifier'

Next configure the mail gem, by default mail will send email via SMTP to port 25 on localhost. If you would like to change that you can configure the gem according to their documentation.

Then you need to configure rack to use the middleware. Below is an example for sinatra:

use Rack::ExceptionNotifier,
  :to => 'me@example.com',
  :from => 'app@example.com',
  :subject => '[ERROR] %s'

License

Rack-exception_notifier is released under the MIT license.

About

Rack middleware to send email when exceptions are raised

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%