Hi,
Does .NET have a way to pull email from a POP3 server out of the box or you have to code/buy a 3rd party component?
|
|
|
|
|
|
|
You can check Mail.dll .NET mail component, it has SSL support, unicode, and multi-national email support:
You can download it here: http://www.lesnikowski.com/mail. |
|||
|
|
|
|
3rd party components are the way the go; much better than the alternative, which would be sending raw POP3 commands with NetStreams [shudder] |
||
|
|
|
|
Hi, the .NET framework does not support POP3. Connection to the POP3 server is an easy part of work. The protocol is pretty easy. The problem is correct parsing of the message. You'll need a decent MIME or S/MIME parser which can handle unicode, attachments in vierd formats, message body in nonstandard WinMail.dat produced by Outlook, internationalization issues. A parser which can fix common mail clients bugs and RFC violations etc.. Threre is quite a lot of third party POP3 libraries. There are also some free POP3 libraries on codeproject. You may try Rebex POP3 for .NET
Code is taken from www.rebex.net/secure-mail.net/tutorial-pop3.aspx |
||
|
|
|
|
Check out the EasyMail objects from Quiksoft. They are very easy to use and the support is really good. |
||
|
|
|
|
Hi! CodeProject got a good C# tutorial on this http://www.codeproject.com/KB/IP/despop3client.aspx Also check out: http://www.developerfusion.com/article/4071/how-to-pop3-in-c/ |
||
|
|
|
|
I personally like the serverintellect components. |
||
|