-
Has anyone successfully created an ICS Calendar type of workflow? If so, would you share your template?
-
Did anyone deal with timezones? I will have users in many different time zones and want the event to pass on the time zone to their calendar to deal with.
This is the template I have attempted.
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//AppSheet Inc//AppSheet
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-COMMENT: See iCalendar Validator
BEGIN:VEVENT
SUMMARY:Add event to Pray for <<[EVENT_TITLE]>>
UID:<<EVENT_UID>>
DTSTART;TZID=<<EVENT_TZ>>:<<EVENT_START>>
DTEND;TZID=<<EVENT_TZ>>:<<EVENT_END>>
DESCRIPTION:This is an invitation to a pray for this <<[EVENT_TITLE]>>
DTSTAMP:<<NOW()>>
ORGANIZER;CN=Lucinda:MAILTO:USEREMAIL()
END:VEVENT
END:VCALENDAR
I started this based off of this post;
[New Bug Encountered: ICS calendar template parsing](https://community.appsheet.com/t/new-bug-encountered-ics-calendar-template-parsing/17289) Questions
I think we need to dial back the strict parsing of ICS files, perhaps as a test or for a limited period of time. We cannot for example insert a start expression into the ICS file (or I did it wrong which is entirely possible). Here’s a relevant thread: This example: BEGIN:VCALENDAR VERSION:2.0 PRODID:-//AppSheet Inc//AppSheet CALSCALE:GREGORIAN METHOD:PUBLISH X-COMMENT: See iCalendar Validator BEGIN:VEVENT SUMMARY:Meeting about <<[Subject]>> …