Hi,
I had an Meeting file (attached), I create a Pst file (attached) which contains it, but when I added the pst to Outlook but when I opened the Meeting from the pst, I saw that the format was changed (and corrupted, especially Hebrew and text font & colors [even English])
this is the code:
MapiMessage msg = MapiMessage.FromFile("Meet.msg");
MapiCalendar meet = (MapiCalendar)msg.ToMapiMessageItem();
using (PersonalStorage pst = PersonalStorage.Create("Roi.pst", FileFormatVersion.Unicode))
{
FolderInfo appFolder = pst.CreatePredefinedFolder("Appointments", StandardIpmFolder.Appointments);
appFolder.AddMapiMessageItem(meet);
}
I attached print screen of the Appointment that I loaded, and of the Appointment which I opened from the pst on Outlook.
Please your help,
Thanks,
Roi