phodge
Wed Nov 24 23:05:02 CST 2004
I found a good c# page at:
http://support.microsoft.com/default.aspx?id=310258
"How to use the Microsoft Outlook Object Library to retrieve a message from
the Inbox by using Visual C# .NET"
"phodge" wrote:
> Nick, thanks, but I believe outlook data is stored in a db. I can read all
> data from outlook except for an attached message. Using an XmlDataDocument
> gives me the email schema, and the data:
> <Inbox>
> <Importance>... blah-blah-bla
> <Icon>...
> <Subject>..
> <From>..
> <Sender_x0020_Name>..
> <To>..
> <Received>...
> .
> .
> .
> <Has_x0020_Attachments>true</Has_x0020_Attachments>
> <Normalized_x0020_Subject>test</Normalized_x0020_Subject>
> <Object_x0020_Type>5</Object_x0020_Type>
> </Inbox>
>
> Each email is accessible to me except for the attachment.