Skip to content

Instantly share code, notes, and snippets.

View SVK050's full-sized avatar

Kucherenko Sergey SVK050

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)