Safe Haskell | None |
---|---|
Language | Haskell2010 |
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
:: 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 () |
:: 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
SES | |
|
data SESException Source #
Exposed since: 0.3.2
Instances
Show SESException Source # | |
Defined in Network.Mail.Mime.SES showsPrec :: Int -> SESException -> ShowS # show :: SESException -> String # showList :: [SESException] -> ShowS # | |
Exception SESException Source # | |
Defined in Network.Mail.Mime.SES |