Skip to content

Instantly share code, notes, and snippets.

@umrashrf
Created July 26, 2016 19:05
Show Gist options
  • Star 25 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save umrashrf/3db5226aecda3b6dedca74428d42e32b to your computer and use it in GitHub Desktop.
Save umrashrf/3db5226aecda3b6dedca74428d42e32b 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}}"
@smoms
Copy link

smoms commented Aug 13, 2017

thanks

@ShivamJoker
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment