I’ve been looking at the following post :
Hi Ashley,
Thank you for contacting Aspose support team.
You may use following sample code for generating the MapiMessage of type “IPM.Post.RSS”. Please give it a try and let us know the feedback.
MapiMessage mapi = new MapiMessage("user@domain.com", "user2@domain.com", “Subject”, “Body”);
//Option 1
MapiProperty msgClass = new MapiProperty(MapiPropertyTag.PR_MESSAGE_CLASS_W,Encoding.Unicode.GetBytes(“IPM.Post.RSS”));
mapi.SetProperty(msgClass);
//Option 2
[//mapi.SetStringPropertyValue](https://mapi.setstringpropertyvalue/)(MapiPropertyTag.PR_MESSAGE_CLASS,
“IPM.Post.RSS”);
mapi.Save(path, “msgFileName.msg”);
Great, thanks for the quick response.
Hi Ashley,
Hi,
In my option, it should be provided as a method such as MapiMessage.SetMessageClass(“RequiredMessageClass”) and the API should handle the rest. There a number of methods available such as SetStringProperty, SetProperty, CustomProperty and these sometimes seem confusing. What is your feedback on this?
Hi Acton,
The issues you have found earlier (filed as EMAILNET-34993) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.