Hi I was trying send meeting invites through my asp.net MVC application. There was a requirement to show which timezone this invite was created as in following image. I tried various things as told by Microsoft support, neither of them worked.
As per Microsoft Exchange Server support's advice I created following.
TZID:Sri Jayawardenepura BEGIN:STANDARD TZOFFSETFROM:+0530 TZOFFSETTO:+0530 END:STANDARD END:VTIMEZONE BEGIN:VEVENT DTSTART;TZID=Sri Jayawardenepura:20140416T033000Z DTSTAMP:20140327T113138Z DTEND;TZID=Sri Jayawardenepura:20140416T060000Z LOCATION: Board room
After adding TZID inside DTSTART, it is not coming as invite to gmail.
but following works fine as invitation both in outlook configured with Exchange Server and webmails like gmail.
TZID:Sri Jayawardenepura BEGIN:STANDARD TZOFFSETFROM:+0530 TZOFFSETTO:+0530 END:STANDARD END:VTIMEZONE BEGIN:VEVENT DTSTART:20140318T033000Z DTSTAMP:20140327T122640Z DTEND:20140318T060000Z LOCATION: Board room
however that requirement of showing timezone where invite was created not fulfilled yet. Can anyone help me. Thanks in advance.