You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! @gautamsi
I'm trying to create an event in the calendar, but when saving, the body is not added, and everything else works fine. How can this problem be solved?
const appointment = new ExchangeService.Appointment(service);
appointment.Subject = title;
appointment.Body = new ExchangeService.MessageBody(description);
appointment.Start = new ExchangeService.DateTime(start); // Установите дату и время начала события здесь
appointment.End = new ExchangeService.DateTime(end);
appointment.Location = location;
await appointment.Save(ExchangeService.SendInvitationsMode.SendToAllAndSaveCopy)
The text was updated successfully, but these errors were encountered:
Hello!
@gautamsi
I'm trying to create an event in the calendar, but when saving, the body is not added, and everything else works fine. How can this problem be solved?
The text was updated successfully, but these errors were encountered: