In my MVC project, iam using ews to create and update appointments in outlook calendar I have a small problem. When I create / update an appointment in the outlook calendar with ews, the body message not showing correct !
I am adding
appt.Body = "rådgivning Møde"
And in outlook calendar, this message will be displayed as: r?dgivning M?de
Appointment appt = Appointment.Bind(ExchangeServerConnection, apptID, new
PropertySet(AppointmentSchema.Subject, AppointmentSchema.Body, AppointmentSchema.TextBody, AppointmentSchema.LegacyFreeBusyStatus));
if (appt.LegacyFreeBusyStatus == appstatus)
{
appt.Subject = subject;
appt.Body = message;
appt.LegacyFreeBusyStatus = LegacyFreeBusyStatus.Busy;
//set explicit mode to SendToNone. Default mode is SendToAllAndSavecopy, it converts appointment to meeting.
SendInvitationsOrCancellationsMode mode = SendInvitationsOrCancellationsMode.SendToNone;
appt.Update(ConflictResolutionMode.AlwaysOverwrite, mode);