Skip to content

Instantly share code, notes, and snippets.

@ChrisTracy
ChrisTracy / AutoArchiveNotImportant.gs
Created February 13, 2025 20:08
Auto Archive GMAIL
/**
* time-based trigger that runs 'autoArchiveUnimportant'
* every day at 3 AM.
*/
function createTimeTrigger() {
ScriptApp.newTrigger('autoArchiveUnimportant')
.timeBased()
.atHour(3)
.everyDays(1)
.create();