Google-calendar – Repeating reminders for upcoming events in Google Calendar

google-calendar

In Google Calendar, is it possible to set up repeating reminders for upcoming deadlines and events? I want to set an hourly alarm that will show the amount of time remaining until the next calendar event, but I haven't yet found a feature like this.

For example, if my next deadline was a project that needed to be finished by February 30, 2013, I would want to receive an email notification every hour that showed the number of days remaining until the deadline.

Best Answer

To avoid creating so many events, you should take advantage of the built-in rule engine of the iCalendar standard (RFC5545) supported by Google Calendar.

The below should work in a fully iCalendar compliant calendar but I do not believe that Google Calendar would support it

BEGIN:VCALENDAR
VERSION:2.0
PRODID:pyICSParser
BEGIN:VEVENT
DTSTART:20130224T190000
DTEND:20130228T235959
DTSTAMP:20130205T114500
UID:WA_40871.ics
SUMMARY:Project
BEGIN:VALARM
TRIGGER;VALUE=DATE-TIME:20130226T210000Z
REPEAT:120
DURATION:PT1H
ACTION:EMAIL
DESCRIPTION:Reminder
END:VALARM
END:VEVENT
END:VCALENDAR