WrapCompressedRTFStream??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My users forward me spam as attachments so I can get all the internet headers
to report it.

I know how to use CDO to get an attachment's headers, but not its HTML
source. It seems the only way is to get the CDOPR_RTF_COMPRESSED property
and call WrapCompressedRTFStream on it.

How do I use WrapCompressedRTFStream in Outlook VBA? All the examples I see
are in C++ -- you'd think someone would have Outlook VBA code somewhere!

--Andy Smith
 
=?Utf-8?B?QW5keSBTbWl0aA==?= said:
I know how to use CDO to get an attachment's headers, but not its HTML
source. It seems the only way is to get the CDOPR_RTF_COMPRESSED
property and call WrapCompressedRTFStream on it.

How do I use WrapCompressedRTFStream in Outlook VBA? All the examples
I see are in C++ -- you'd think someone would have Outlook VBA code
somewhere!

You can't do it directly, you'll need to use some C++ as a helper, but
fortunately a DLL exists to do that for you -- see
http://www.danielmitchell.net/mailfaq, Q6.1.

-- dan
 
Back
Top