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);
在这里,我正在创建添加到活动中的与会者列表。我使用DDay.ical在Callav扩展上创建icloud上的事件。与会者被正确添加到活动中但问题是没有日历事件来自iCloud的邮件被发送给与会者(邮件有接受,拒绝,可能选项)。邮件过去发送但突然邮件不是来自iCloud。我也把RSVP设置为true但没有快乐。如果我直接在iCloud.com上创建预约并添加与会者,那么邮件即将发送给与会者。任何的想法?任何帮助将不胜感激。