Programmatically retrieving email from server

  • Thread starter Thread starter Yashgt
  • Start date Start date
Y

Yashgt

Hi,

Just as we use the System.Net.Mail.SmtpClient class for
programmatically sending emails through an SMTP server, what can we
use for receiving emails from a POP3 server. We want to mimic a mail
client that reads messages from the mail server but retains them on
the server.
This is actually for an application that parses emails to derive
content.

Thanks,
Yash
 
Hi,

Just as we use the System.Net.Mail.SmtpClient class for
programmatically sending emails through an SMTP server, what can we
use for receiving emails from a POP3 server. We want to mimic a mail
client that reads messages from the mail server but retains them on
the server.
This is actually for an application that parses emails to derive
content.

"The .NET Framework does not offer POP3 or MIME support. For those of
you who need it, this article provides support for both POP3 and
MIME.":

http://www.codeproject.com/KB/IP/NetPopMimeClient.aspx
 
Back
Top