|
|
|
Description |
An SMTP client in the IO Monad.
|
|
Synopsis |
|
|
|
Documentation |
|
|
:: Maybe (IORef [Maybe SmtpReply]) | For storing failure statuses of messages sent so far
| -> String | Domain name for EHLO command
| -> SockAddr | Network address of SMTP server
| -> [Message] | List of messages to send
| -> IO () | | Send a list of email messages to an SMTP server. Throws SMTPException on
failure at the communication protocol level.
The optional IORef is used to store a list of statuses for messages sent so
far, where Nothing means success. The list elements correspond to the elements
of the input message list. If the caller catches an exception, this list is
likely to be shorter than the input message list, and so it gives an indication
of how many messages were dispatched.
The message body may use either "\n" or "\r\n" for an end-of-line
marker and in either case it will be sent correctly to the server.
|
|
|
|
:: String -> IO () | Diagnostic log function
| -> Maybe (IORef [Maybe SmtpReply]) | For storing failure statuses of messages sent so far
| -> String | Domain name for EHLO command
| -> SockAddr | Network address of SMTP server
| -> [Message] | List of messages to send
| -> IO () | | Like sendSMTP but takes an additional function for logging all input and
output for diagnostic purposes.
|
|
|
|
An exception indicating a communications failure at the level of the SMTP protocol.
| Constructors | | Instances | |
|
|
|
An SMTP reply is a three-digit return code plus some
waste of bandwidth called "comments". This is what the
list of strings is for; one string per line in the reply.
show will append an "\r\n" end-of-line marker to
each entry in that list, so that the resulting string is
ready to be sent back to the peer.
Here is an example:
*Rfc2821> print $ Reply (Code Success MailSystem 0)
["worked", "like", "a charm" ]
250-worked
250-like
250 a charm
If the message is [], you'll get a really helpful
default text.
| Constructors | | Instances | |
|
|
|
Constructors | | Instances | |
|
|
|
Constructors | Unused0 | | PreliminarySuccess | | Success | | IntermediateSuccess | | TransientFailure | | PermanentFailure | |
| Instances | |
|
|
|
Constructors | Syntax | | Information | | Connection | | Unspecified3 | | Unspecified4 | | MailSystem | |
| Instances | |
|
|
|
This data type repesents a parsed Internet Message as defined in
this RFC. It consists of an arbitrary number of header lines,
represented in the Field data type, and a message body, which may
be empty.
| Constructors | | Instances | |
|
|
|
This data type represents any of the header fields defined in this
RFC. Each of the various instances contains with the return value
of the corresponding parser.
| Constructors | | Instances | |
|
|
|
A NameAddr is composed of an optional realname a mandatory
e-mail address.
| Constructors | | Instances | |
|
|
Produced by Haddock version 2.6.0 |