Created
October 15, 2013 14:08
-
-
Save rmarmorstein/6992148 to your computer and use it in GitHub Desktop.
google scripts email spammer (Don't really spam with it) Educational purposes only.
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
| function myFunction() { | |
| var Email = "you@domain.com" | |
| var Sbj = "Subject" | |
| var msg = "Body" | |
| var i =0 //Dont change this | |
| var qty = 50 //Number of messages to send. | |
| while(i<qty){ | |
| MailApp.sendEmail(Email, Sbj, msg); | |
| i++ | |
| } | |
| } |
Do you know why there is a cool down
Author
That is a rate limit on Google's end.
…On Fri, Dec 4, 2020, 10:13 AM Dragonbreath413 ***@***.***> wrote:
***@***.**** commented on this gist.
------------------------------
Do you know why there is a cool down
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://gist.github.com/6992148#gistcomment-3550324>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAS4J4YAC4D7BPK2IBFTIGTSTD4BTANCNFSM4KFYU2IQ>
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A tiny revision I would make: indent the MailApp script like the "i++" underneath it so it's easier to see that it's in the while loop