Skip to content

Instantly share code, notes, and snippets.

@shell
Created January 8, 2019 13:18
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 shell/897eeeeaf24a37f8535c1251474d835d to your computer and use it in GitHub Desktop.
Save shell/897eeeeaf24a37f8535c1251474d835d to your computer and use it in GitHub Desktop.
Google apps script to remove notifications older than 2 days
function myFunction() {
GmailApp.search("in:inbox subject:\"[Slack] Notifications\" older_than:2d")
.forEach(function (msg) { return msg.moveToTrash(); });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment