Scenario: I open MSG file (sample.msg) with embedded message; save embedded message and read it with MapiMessage.FromFile method; do some work and save embedded message to the file. Then I need to replace original attachment on sample.msg without changing the order of attachments in RTF body.
Hi Alex,
You may please try replacing BinaryData byte array to replace the attachment contents and let us know the feedback. It does not change attachments order and also the newly replaced attachment can be opened successfully.
String path = @"\";
var mapi0 = MapiMessage.FromFile(path + @"sample.msg");
mapi0.Attachments[0].Save(path + @"att.msg");
//work with embedded message
var emb = MapiMessage.FromFile(path + @"att.msg");
//....
emb.Save(path + @"att-resaved.msg");
// replace attachment content
//mapi0.Attachments[0].SetProperty(new MapiProperty(MapiPropertyTag.PR_ATTACH_DATA_OBJ, File.ReadAllBytes(path + @"att-resaved.msg")));
MemoryStream memStr_att_resaved = new MemoryStream();
MapiMessage att_resaved = MapiMessage.FromFile(path + @"att-resaved.msg");
att_resaved.Save(memStr_att_resaved);
mapi0.Attachments[0].BinaryData = ReadAllBytes(memStr_att_resaved);
mapi0.Save(path + @"sample-resaved.msg"); // this file will contain ok attachment.
This code sample does not work.
Hi Alex,
The issues you have found earlier (filed as EMAILNET-35095) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.
Hi Alex,
Article links are provided in the release notes on the download page. You may please visit the “Replace Embedded MSG Attachments Contents” section in this article and let us know the feedback.