This library contains operations for sending emails. The implementation might need to be adapted to the local environment.
Author: Michael Hanus
Version: May 2007
sendMail
:: String -> String -> String -> String -> IO ()
Sends an email via mailx command. |
sendMailWithOptions
:: String -> String -> [MailOption] -> String -> IO ()
Sends an email via mailx command and various options. |
Options for sending emails.
Constructors:
CC
:: String -> MailOption
: recipient of a carbon copy
BCC
:: String -> MailOption
: recipient of a blind carbon copy
TO
:: String -> MailOption
: recipient of the email
Sends an email via mailx command.
|
Sends an email via mailx command and various options. Note that multiple options are allowed, e.g., more than one CC option for multiple recipient of carbon copies. Important note: The implementation of this operation is based on the command "mailx" and must be adapted according to your local environment!
|