SES-Email-Blaster/send.sh

10 lines
202 B
Bash
Raw Normal View History

2022-11-10 21:08:44 +00:00
#!/bin/bash
PROFILE=$1
FROM=$2
for i in {1..100}
do
aws ses --region us-west-2 --profile $PROFILE send-email --from $FROM --destination file://destination.json --message file://message.json
done