Created
November 9, 2016 06:38
-
-
Save mmautner/be5b67a5507d9368d90f86961b2a3ad1 to your computer and use it in GitHub Desktop.
Send an email via the AWS CLI (using Amazon SES)
This file contains hidden or 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
text="test email | |
testing | |
-Max Mautner" | |
aws ses send-email \ | |
--from [email protected] \ | |
--to [email protected] \ | |
--subject "Testing" \ | |
--text "$text" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment