I'm working on a C# application that sends emails containing a vCalendar event in its body. Say I (knockycode) would like to create a calendar event via this application. An email will be sent to my email address with the following body:
BEGIN:VCALENDAR METHOD:REQUEST PRODID:-//MyCompany//Product//EN VERSION:2.0 BEGIN:VEVENT DTSTAMP:20130819T084518Z DTSTART:20051126T011300Z SUMMARY:Testing that calendars get received UID:MyOwnID SEQUENCE:123 ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=NEEDS-ACTION;RSVP=TRUE;CN="knockycode@lotusnotes.com":MAILTO:knockycode@lotusnotes.com ORGANIZER;CN="Knockycode":MAILTO:knockycode@lotusnotes.com LOCATION:TBC DTEND:20051126T031300Z DESCRIPTION:Some Body\NAnother Line of the body BEGIN:VALARM ACTION:DISPLAY DESCRIPTION:REMINDER TRIGGER;RELATED=START:-PT02H30M00S END:VALARM TRANSP:OPAQUE END:VEVENT END:VCALENDAR
Take note that the organizer and the attendee is one and the same. This is so the organizer (me/knockycode) can actually have the event created on my mail client.
On Exchange/Outlook and gmail, the email is received (and I can RSVP to the event).
However, on Domino/Lotus Notes -- the email is not received (i.e. not shown in my mailbox). Though the logs in the Domino console do say the email's sent successfully.... If the organizer's email address was different to mine though -- the email does get received and shown in my mailbox.
Is there some configuration of the Domino server that would allow this email to be received?
Or something else has to be added to the email body?