Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Network.Mail.SMTP.Types
Contents
- Auth types (re-exports)
- Network.Mail.Mime types (re-exports)
Synopsis
- data Command
- type ReplyCode = Int
- data Response
- = Ok
- | SystemStatus
- | HelpMessage
- | ServiceReady
- | ServiceClosing
- | UserNotLocal
- | CannotVerify
- | StartMailInput
- | ServiceNotAvailable
- | MailboxUnavailable
- | ErrorInProcessing
- | InsufficientSystemStorage
- | SyntaxError
- | ParameterError
- | CommandNotImplemented
- | BadSequence
- | ParameterNotImplemented
- | MailboxUnavailableError
- | UserNotLocalError
- | ExceededStorage
- | MailboxNotAllowed
- | TransactionFailed
- type UserName = String
- type Password = String
- data AuthType
- data Address = Address {
- addressName :: Maybe Text
- addressEmail :: Text
Documentation
Constructors
HELO ByteString | |
EHLO ByteString | |
MAIL ByteString | |
RCPT ByteString | |
DATA ByteString | |
EXPN ByteString | |
VRFY ByteString | |
HELP ByteString | |
AUTH AuthType UserName Password | |
NOOP | |
RSET | |
QUIT | |
STARTTLS |
Instances
Constructors
Auth types (re-exports)
Network.Mail.Mime types (re-exports)
Constructors
Address | |
Fields
|
Instances
IsString Address | |
Defined in Network.Mail.Mime Methods fromString :: String -> Address # | |
Generic Address | |
Show Address | |
Eq Address | |
type Rep Address | |
Defined in Network.Mail.Mime type Rep Address = D1 ('MetaData "Address" "Network.Mail.Mime" "mime-mail-0.5.1-8nmj7ZTbq4kAMX0DE6mttH" 'False) (C1 ('MetaCons "Address" 'PrefixI 'True) (S1 ('MetaSel ('Just "addressName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "addressEmail") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text))) |