Skip to content

Instantly share code, notes, and snippets.

@superbrothers
Created March 17, 2019 10:21
Show Gist options
  • Save superbrothers/59aafd7bc6a9536cc227570230d05a48 to your computer and use it in GitHub Desktop.
Save superbrothers/59aafd7bc6a9536cc227570230d05a48 to your computer and use it in GitHub Desktop.
function autoArchive() {
var delayDays = 7; // 7 days before messages are moved to archive.
var maxDate = new Date();
maxDate.setDate(maxDate.getDate() - delayDays);
var threads = GmailApp.search("in:inbox -is:starred")
threads.forEach(function (thread) {
if (thread.getLastMessageDate() < maxDate) {
thread.moveToArchive()
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment