Created
April 11, 2019 08:19
-
-
Save robmilward/30a24c96a8a13279109416975ec1323e to your computer and use it in GitHub Desktop.
[Send SES via AWS CLI] Sending raw mail over SES using the AWS CLI tool #aws #mail
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
| aws ses send-email \ | |
| --profile=ProfileName \ | |
| --region=eu-west-1 \ | |
| --destination="ToAddresses=someone@example.com" \ | |
| --message="Subject={Data=Test},Body={Text={Data='Test Body'}}" \ | |
| --from=avalidemail@example.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment