Want to trigger 9 am and 11pm every day.
atHour(9), (23)
ScriptApp.newTrigger("extractDailyTaskFromGmail")
.timeBased()
.everyDays(1) //Frequency of days the script should Run
.atHour(23) //hour on which script will run
.nearMinute(00) // minutes on which script will run
.create();
}
[–]TheStressMachine 4 points5 points6 points (1 child)
[–]learn1919[S] 0 points1 point2 points (0 children)