How to read POP3 mails from ASP.Net VB.Net application

Hai,

I need to read POP3(SMTP) mails from ASP.Net VB.Net Application.

The program continuously monitor the server for particular mail ID.

If any mail for that mail ID, Read the mail and process the information accrdingly.

Kindly suggest me.

Thanks,
SivaHai I have also same problem

Pls Reply
Senthil Kumar.VOriginally posted by rskshiva
Hai,

I need to read POP3(SMTP) mails from ASP.Net VB.Net Application.

The program continuously monitor the server for particular mail ID.

If any mail for that mail ID, Read the mail and process the information accrdingly.

Kindly suggest me.

Thanks,
Siva It can't be done with asp.net. The reason it cant is because the client is sitting on http protocol which is a request based protocol. The only way to moniter it somewhat continuously would be something like a meta refresh to rerequest the data. You might use an executable program for continuous monitering, something that can check the server rapidly or something that just has a stateful protocol.

<!-- m --><a class="postlink" href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncodefun/html/code4fun03282003.asp">http://msdn.microsoft.com/library/defau ... 282003.asp</a><!-- m -->
 
Back
Top