Skip to content

Instantly share code, notes, and snippets.

@vesper8
Forked from umrashrf/aws_ses.bash
Created October 26, 2017 03:04
Show Gist options
  • Save vesper8/a04684b47dd8a2dd16b600a0a3de0cc7 to your computer and use it in GitHub Desktop.
Save vesper8/a04684b47dd8a2dd16b600a0a3de0cc7 to your computer and use it in GitHub Desktop.
Amazon AWS CLI - SES SEND EMAIL
sudo pip install awscli
aws configure
aws ses send-email \
--from "john@gmail.com" \
--destination "ToAddresses=mike@gmail.com" \
--message "Subject={Data=from ses,Charset=utf8},Body={Text={Data=ses says hi,Charset=utf8},Html={Data=,Charset=utf8}}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment