mime-mail-ses-0.4.3: Send mime-mail messages via Amazon SES
Safe HaskellSafe-Inferred
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

renderSendMailSES :: MonadIO m => Manager -> SES -> Mail -> m () Source #

renderSendMailSESGlobal :: MonadIO m => SES -> Mail -> m () Source #

Same as renderSendMailSES but uses the global Manager.

Since: 0.4.1

data SES Source #

Instances

Instances details
Show SES Source # 
Instance details

Defined in Network.Mail.Mime.SES