mime-mail-ses-0.4.3: Send mime-mail messages via Amazon SES

Safe HaskellNone
LanguageHaskell2010

Network.Mail.Mime.SES

Synopsis

Documentation

sendMailSES Source #

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 () 

sendMailSESWithResponse Source #

Arguments

:: MonadIO m 
=> Manager 
-> SES 
-> ByteString 
-> (Status -> Sink Event IO a)

What to do with the HTTP Status returned in the Response.

-> m a 

Generalised version of sendMailSES which allows customising the final return type.

Since: 0.4.3

sendMailSESGlobal Source #

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

data SES Source #

Instances
Show SES Source # 
Instance details

Defined in Network.Mail.Mime.SES

Methods

showsPrec :: Int -> SES -> ShowS #

show :: SES -> String #

showList :: [SES] -> ShowS #