AWS SES
https://github.com/samoconnor/AWSSES.jl
AWSSES.ses_send
— Method.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!"
)
AWSSES.ses_send_attachments
— Method.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")])
AWSSES.ses_send_raw
— Method.ses_send_raw([::AWSConfig]; to=, from=, raw=)
Send a raw email.
raw
must contain both headers and message body.