Popularity
1.6
Declining
Activity
0.0
Stable
3
2
0

Monthly Downloads: 19
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: System    

exception-mailer alternatives and similar packages

Based on the "System" category.
Alternatively, view exception-mailer alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of exception-mailer or a related project?

Add another 'System' Package

README

ExceptionMailer

Haskell module to send an notification email in the event of an uncaught exception

To use, simply call the setup routine with the desired "from" and "to" addresses. For example,

import System.ExceptionMailer

main = do
    setupExceptionMailer (mkAddress "My Program" "[email protected]")
                         (mkAddress "Sysadmin" "[email protected]")