Retrieve emails from exchange in C#

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • sirishapillai

    Retrieve emails from exchange in C#

    HI,

    I want to retrieve emails from my inbox of exchange server 2000.
    using my credentials username and password

    1. connect to the server
    2.provide username = sirisha and password = passwd
    3. recieve or get the list of the mails in sirisha inbox.

    I have to write a code in c# and not finding any suitable thing as to
    start with CDO, MAPI or RDO

    pls help me in this .

    K.Sirisha
  • Peter Duniho

    #2
    Re: Retrieve emails from exchange in C#

    On Mon, 14 Jul 2008 23:13:30 -0700, sirishapillai
    <sirishapillai@ gmail.comwrote:
    I want to retrieve emails from my inbox of exchange server 2000.
    using my credentials username and password
    >
    1. connect to the server
    2.provide username = sirisha and password = passwd
    3. recieve or get the list of the mails in sirisha inbox.
    >
    I have to write a code in c# and not finding any suitable thing as to
    start with CDO, MAPI or RDO
    Granted, I don't really know that much about MAPI. But I thought it
    included Exchange support. I don't know of any MAPI support in .NET
    though, so you'd have to use it via p/invoke interop.

    Basically, AFAIK .NET has built-in support for _sending_ email, but
    nothing for receiving it.

    Pete

    Comment

    Working...