AWSSES.jl

AWS SES

https://github.com/samoconnor/AWSSES.jl

AWSSES.ses_sendMethod.
ses_send([::AWSConfig]; to=, from=, subject=, body=)

Send plain text email.

ses_send(
    to="sam@octech.com.au"
    from="sam@octech.com.au"
    subject="Hi Sam!"
    body="Hello!"
)
ses_send_attachments([::AWSConfig],
                     to=, from=, subject=, body=,
                     attachments=[])

Send an email with attachments.

ses_send_attachments(to="sam@octech.com.au", from="sam@octech.com.au"
                     subject="Attachments attached",    
                     body="See attached attachments...",
                     [("bar.txt", "text/plain", "bar\n"),
                      ("foo.txt", "text/plain", "foo\n")])
ses_send_raw([::AWSConfig]; to=, from=, raw=)

Send a raw email.

raw must contain both headers and message body.