Skip to content

Instantly share code, notes, and snippets.

@mmautner
Created November 9, 2016 06:38
Show Gist options
  • Save mmautner/be5b67a5507d9368d90f86961b2a3ad1 to your computer and use it in GitHub Desktop.
Save mmautner/be5b67a5507d9368d90f86961b2a3ad1 to your computer and use it in GitHub Desktop.
Send an email via the AWS CLI (using Amazon SES)
text="test email
testing
-Max Mautner"
aws ses send-email \
--from ses-validated@address.com \
--to max@example.com \
--subject "Testing" \
--text "$text"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment