Daily Email Summary of your Google Calendar Events
What’s the agenda for today? The Google Script will send you a daily email digest of all the events that are scheduled for today. The email includes the event’s title and the start and end dates but you can extend it to include the event’s location, description and other details.
function sendCalendarAgenda() {
/* Get the default calendar */
var cal = CalendarApp.getDefaultCalendar();
/* Get all events for today */
var events = cal.getEventsForDay(new Date());
/* Email address for the events digest */
var mailto = 'email@labnol.org';
if (events.length > 0) {
var body = 'Google Calendar - Events' + 'nn';
var tz = Session.getScriptTimeZone();
/* Concatenate the events list */
for (var i = 0; i < events.length; i++) {
body += Utilities.formatDate(events[i].getStartTime(), tz, 'MM:dd HH:mm') + ' ~ ';
body += Utilities.formatDate(events[i].getEndTime(), tz, 'MM:dd HH:mm') + ' :';
body += events[i].getTitle() + 'n';
}
/* Send email digest */
MailApp.sendEmail(mailto, 'Google Calender - Summary', body);
}
}
Amit Agarwal
Google Developer Expert, Google Cloud Champion
Amit Agarwal is a Google Developer Expert in Google Workspace and Google Apps Script. He holds an engineering degree in Computer Science (I.I.T.) and is the first professional blogger in India.
Amit has developed several popular Google add-ons including Mail Merge for Gmail and Document Studio. Read more on Lifehacker and YourStory