I'm generating ICS files from a PHP application and emailing them as attachments (via SendGrid api).
The ICS file works fine with Gmail web mail, and with an iPhone. However, IBM Notes does not recognize them as meeting invites. Notes shows the attachment but does not see it as an event invite.
Here's my ICS file:
BEGIN:VCALENDAR
PRODID:-//My Company//v1.1//EN
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:REQUEST
BEGIN:VEVENT
DTSTART:20160127T140000Z
DTEND:20160127T143000Z
DTSTAMP:20160114T213657Z
ORGANIZER;CN=Demo Two:
mailto:demo2@example.com
UID:e93838a737b3f9ae75056968b22281b2
ATTENDEE;CUTYPE=INDIVIDUAL;ROLE=CHAIR;RSVP=FALSE
;CN=Demo Two:mailto:demo2@example.com
CREATED:20160114T213657Z
DESCRIPTION:another scheduled
LAST-MODIFIED:20160114T213657Z
LOCATION:See email
SEQUENCE:0
STATUS:CONFIRMED
SUMMARY:another scheduled
TRANSP:OPAQUE
END:VEVENT
END:VCALENDAR
I'm trying to send the same ICS file to multiple recipients, so I don't include an ATTENDEE line for the recipient, only for the CHAIR.
I can't find ANY detailed information about what Notes requires in its ICS files...
Any ideas what's going wrong?