"Sue Mosher [MVP-Outlook]" <(E-Mail Removed)> wrote in
news:exh#(E-Mail Removed):
> Actually, if you look closely at the docs that start at
> http://msdn.microsoft.com/library/en...e/oe_entry.asp,
> you'll see that many of the interfaces are listed as deprecated or
> "Not currently supported."
Yeah, a lot of them aren't there, and there's not really much of a guide
as to how to do it -- that said, after a few minutes looking through the
docs, I reckon you should be able to start OE and get to a message with:
1. CoCreateInstance an IStoreNamespace
2. IStoreNamespace::Initialize() on that
3. IStoreNamespace::OpenFolder
4. IStoreFolder::GetFirstMessage/GetNextMessage
5. Use the MESSAGEID from that to IStoreFolder::OpenMessage
6. Now you have an IMimeMessage that you can poke around at;
GetTextBody/whatever.
-- dan