mirror of
https://github.com/idanoo/SES-Email-Blaster.git
synced 2024-11-21 16:11:57 +00:00
10 lines
202 B
Bash
10 lines
202 B
Bash
#!/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
|