Skip to content

Instantly share code, notes, and snippets.

@Awashcard0
Last active March 7, 2023 16:40
Show Gist options
  • Save Awashcard0/c6144a5569efd47a42919e2dbc0abd5d to your computer and use it in GitHub Desktop.
Save Awashcard0/c6144a5569efd47a42919e2dbc0abd5d to your computer and use it in GitHub Desktop.
//config
var email = ""
var subjet = ""
var body = ""
var timesToRun = 10
//no toutch
var times = 1
function myFunction() {
if (times == timesToRun + 1) {
// +1 to make it not stop early
console.info("Done")
} else {
GmailApp.sendEmail(email, subject, body)
console.info("Sent mail", times + "/" + timesToRun)
times = times + 1
myFunction()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment