How to save OLE Object in Redemption?

  • Thread starter Thread starter Bingo
  • Start date Start date
Do you mean embedded message attachments? If yes, you can use
Attachment.EmbeddedMsg property. If you mean embedded graphics objects in
the RTF messages, there is not much you can do - these attachments are OLE
storage (IStorage) objects that are pretty useless outside of the parent
message. Even Outlook won't let you save these attachments.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
 
I was able to save and reload the OLE objects if they are
MS Word, Excel, etc but not those images. Is there a way
I can tell if the OLE object is MS Word, Excel or
images? Thanks.
 
You can look at the storage itself to figure that out, but I've never tried
that. You can access the IStorage object using Attachment.OleStorage
property in Redemption.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
 
Back
Top