Get MIME from CDO Message object for Outlook 2002-2003 with C++

  • Thread starter Thread starter DarkJem
  • Start date Start date
D

DarkJem

Hello,

I search the web and the groups without any success to find an answer
to my question so I ask it there!

Is there any way of retrieving the full MIME formatted mail from a CDO
Message object in C++? If yes, how can I achieve that? (I'm writing an
addin for Outlook 2002 and 2003)
If no, has anyone already done that who can explain me how to achieve
this or where to find relevant help and sources?

Thanks in advance
Regards

Jérémie
 
1. IConverterSession interface has recently been documented:

http://msdn.microsoft.com/library/e...iaIConverterSession_HV01154520.asp?frame=true
Note that if EX addresses are not converted to the SMTP addresses by
IConverterSession

2. Redemption (url below) - either use SafeMailItem.SaveAs(..., olRFC822) if
you are working with CDO 1.21 or Outlook Object Model or
HrIMessageToRFC822Message if you are using Extended MAPI
(http://www.dimastr.com/redemption/faq.htm#13)

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