Click here to Skip to main content
15,868,141 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
Hi!
I am working with a asp.net application where i need to send and receive email from Internet. So far I have abled to send email from my application by using the SMTP class of .net.

Now i need to receive email from internet such as from Yahoo, gmail,hotmail etc. in my application.

Please help me on this regard.
Posted

In order to recieve mail, you need to write a mail application, which really will sit behind your web app, because your web page doesn't want to connect to a mail server and collect mail on a postback cycle. It's a lot more complex, because ASP.NET has rich support for sending mails and none for recieving it. It also depends on if all those mail sites allow you to connect to them via POP3, which is what you need to write, a POP mail client.
 
Share this answer
 
Comments
Tech Code Freak 9-Feb-12 0:36am    
5up!
this may help you solve..
Read E Mails from ASP.NET[^]
 
Share this answer
 
Comments
Tech Code Freak 9-Feb-12 0:36am    
5up!
Try this - http://sourceforge.net/projects/hpop/[^] to read emails using POP3
 
Share this answer
 
Comments
Tech Code Freak 9-Feb-12 0:36am    
5up!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900