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 is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻