Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 416 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 416 Bytes

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" "noreply@example.com")
                         (mkAddress "Sysadmin" "sysadmin@example.com")