Skip to content

Instantly share code, notes, and snippets.

View alexander-yu-shamin's full-sized avatar

Alexander Yu Shamin alexander-yu-shamin

View GitHub Profile
@Gvozd
Gvozd / Notifications.gs
Last active March 27, 2024 10:44
Birthday Notifications in google calendar
function createTrigger() {
ScriptApp.newTrigger('main')
.timeBased()
.everyDays(1)
.create();
}
function main() {
const {tmp, from, to} = getCalendars();
const syncedEvents = getEvents(to)