IList<IAttendee> icalAttendess = new List<IAttendee>();
IAttendee icalAttendee = new DDay.iCal.Attendee("MAILTO:abc@domain.com")
{
CommonName = attendees.Name.Decode(),
Role = "REQ-PARTICIPANT",
ParticipationStatus = ParticipationStatus.Accepted
};
icalAttendess.Add(icalAttendee);
Here, I am creating attendee list which is added to the event. I am using CalDav extension using DDay.ical to create event on icloud. Attendees are added to event correctly but problem is no calendar event mail from iCloud is being sent to attendee(mail having accept, decline, maybe option). Mails are sent in past but suddenly mails are not coming from iCloud. I have also set RSVP to true but no joy. If I create appointment directly on iCloud.com and add attendee then mail is coming to attendee. Any idea? Any help will be appreciated.