| Safe Haskell | None |
|---|---|
| Language | Haskell98 |
Network.Mail.Mime.SES
Synopsis
- sendMailSES :: MonadIO m => Manager -> SES -> ByteString -> m ()
- sendMailSESGlobal :: MonadIO m => SES -> ByteString -> m ()
- renderSendMailSES :: MonadIO m => Manager -> SES -> Mail -> m ()
- renderSendMailSESGlobal :: MonadIO m => SES -> Mail -> m ()
- data SES = SES {
- sesFrom :: !ByteString
- sesTo :: ![ByteString]
- sesAccessKey :: !ByteString
- sesSecretKey :: !ByteString
- sesSessionToken :: !(Maybe ByteString)
- sesRegion :: !Text
- usEast1 :: Text
- usWest2 :: Text
- euWest1 :: Text
- data SESException = SESException {}
Documentation
Arguments
| :: MonadIO m | |
| => Manager | |
| -> SES | |
| -> ByteString | Raw message data. You must ensure that the message format complies with Internet email standards regarding email header fields, MIME types, and MIME encoding. |
| -> m () |
Arguments
| :: MonadIO m | |
| => SES | |
| -> ByteString | Raw message data. You must ensure that the message format complies with Internet email standards regarding email header fields, MIME types, and MIME encoding. |
| -> m () |
Same as sendMailSES but uses the global Manager.
Since: 0.4.1
renderSendMailSESGlobal :: MonadIO m => SES -> Mail -> m () Source #
Same as renderSendMailSES but uses the global Manager.
Since: 0.4.1
Constructors
| SES | |
Fields
| |
data SESException Source #
Exposed since: 0.3.2
Constructors
| SESException | |
Instances
| Show SESException Source # | |
Defined in Network.Mail.Mime.SES | |
| Exception SESException Source # | |
Defined in Network.Mail.Mime.SES Methods toException :: SESException -> SomeException Source # fromException :: SomeException -> Maybe SESException Source # | |