Hor to Receive EMail?

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

Guest

Can I use dotNet framework class library to receive POP3 EMail? I hope there
is a namespace like System.Web.Mail that can help me to do the job more
easily. But I can't find that? Is there any one can help me? Thanks!
 
Toto said:
Can I use dotNet framework class library to receive POP3 EMail? I hope
there
is a namespace like System.Web.Mail that can help me to do the job more
easily. But I can't find that? Is there any one can help me? Thanks!

Hi Toto,

there is no build-in support for receiving POP3-emails. You'll have to
implement it on your own (System.Net.Sockets.TcpClient) or have a look at
these free libs:

http://www.codeproject.com/csharp/popapp.asp
http://www.c-sharpcorner.com/internet/Pop3Access.asp
http://www.softartisans.com/pop3.html

Cheers

Arne Janning
 
Back
Top