Created
July 26, 2016 19:05
-
-
Save umrashrf/3db5226aecda3b6dedca74428d42e32b to your computer and use it in GitHub Desktop.
Amazon AWS CLI - SES SEND EMAIL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo pip install awscli | |
aws configure | |
aws ses send-email \ | |
--from "[email protected]" \ | |
--destination "[email protected]" \ | |
--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
thanks