Skip to content

Instantly share code, notes, and snippets.

@dainiax
Forked from umrashrf/aws_ses.bash
Created January 15, 2020 10:32
Show Gist options
  • Save dainiax/f29f67576b559fde3369a2ebdbe17496 to your computer and use it in GitHub Desktop.
Save dainiax/f29f67576b559fde3369a2ebdbe17496 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