Skip to content

Instantly share code, notes, and snippets.

@catrincm
catrincm / weeklyAgenda.gs
Last active February 26, 2024 14:38
Email yourself weekly calendar agenda with google apps script
EMAILRECIPIANT = "myemail@gmail.com";
function agendaEmail() {
let dateOptions = { weekday: 'long', month: 'long', day: 'numeric'};
let timeOptions = { hour12:true, hour:'numeric', minute:'numeric'};
var StartDate = new Date();