Hello
How can I change Outlook Messages by loading them from a *.msg file, changing some properties and writing them back to a *.msg file?
The following code can't be compiled, cause the Subject property is a Readonly Property.
Aspose.Network.Outlook.MapiMessage outlookMessage = Aspose.Network.Outlook.MapiMessage.FromFile(@"c:\Temp\test.msg");
outlookMessage.Subject = "My new Subject";
outlookMessage.Save(@"c:\Temp\testOutput.msg");
I can't convert the MapiMessage to a MailMessage, cause I don't want to loose the BodyRtf of the original Mail.
Please help me, thank you very much!
Kind Regards,
Christian Broennimann