Hi
I am saving calendar item into msg file in following way.
Please find the attachment "MyCalendar.png"
I am saving calendar item into msg file in following way.
Appointment f_AppoinmentObj = new Appointment(
"Meeting Room 3 at Office Headquarters", // Location
"Monthly Meeting", // Summary
"Please confirm your availability.", // Description
Start,
End,
"from@domain.com", // Organizer
"attendees@domain.com"); // Attendees
MailMessage f_MailMessage = new MailMessage();
f_MailMessage.AddAlternateView(f_AppoinmentObj.RequestApointment());
MapiMessage mapimsg = MapiMessage.FromMailMessage(f_MailMessage);
mapimsg.Save("MyCalendar.msg");
I am able to create msg file.But the Sent date appears that too the current date time as you can see in attachment given.
Please find the attachment "MyCalendar.png"
Thanks
Amol
Amol