Skip to content

Instantly share code, notes, and snippets.

@aels
Forked from umrashrf/aws_ses.bash
Created May 19, 2022 09:33
Show Gist options
  • Save aels/154053abb02426262114b30dd239a4fb to your computer and use it in GitHub Desktop.
Save aels/154053abb02426262114b30dd239a4fb 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