Connecting to POP3 servers - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T13:32:42Z http://stackoverflow.com/feeds/question/298886 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/298886/connecting-to-pop3-servers 1 Connecting to POP3 servers Blankman 2008-11-18T14:30:44Z 2009-10-21T21:56:18Z <p>Hi,</p> <p>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?</p> http://stackoverflow.com/questions/298886/connecting-to-pop3-servers/298894#298894 0 Answer by Robert Wilkinson for Connecting to POP3 servers Robert Wilkinson 2008-11-18T14:34:24Z 2008-11-18T14:34:24Z <p>Check out the EasyMail objects from <a href="http://www.quiksoft.com" rel="nofollow">Quiksoft</a>. They are very easy to use and the support is really good.</p> http://stackoverflow.com/questions/298886/connecting-to-pop3-servers/298907#298907 1 Answer by Bullines for Connecting to POP3 servers Bullines 2008-11-18T14:37:47Z 2008-11-18T14:37:47Z <p>3rd party components are the way the go; much better than the alternative, which would be sending raw POP3 commands with NetStreams [shudder]</p> http://stackoverflow.com/questions/298886/connecting-to-pop3-servers/298946#298946 0 Answer by Israr Khan for Connecting to POP3 servers Israr Khan 2008-11-18T14:50:38Z 2008-11-18T14:50:38Z <p>Hi! CodeProject got a good C# tutorial on this <a href="http://www.codeproject.com/KB/IP/despop3client.aspx" rel="nofollow">http://www.codeproject.com/KB/IP/despop3client.aspx</a> Also check out:</p> <p><a href="http://www.developerfusion.com/article/4071/how-to-pop3-in-c/" rel="nofollow">http://www.developerfusion.com/article/4071/how-to-pop3-in-c/</a></p> http://stackoverflow.com/questions/298886/connecting-to-pop3-servers/298953#298953 0 Answer by Mischa Kroon for Connecting to POP3 servers Mischa Kroon 2008-11-18T14:55:29Z 2008-11-18T14:55:29Z <p>I personally like the <a href="http://www.aspnetpop3.com/" rel="nofollow">serverintellect components</a>. </p> http://stackoverflow.com/questions/298886/connecting-to-pop3-servers/669697#669697 6 Answer by Pawel Lesnikowski for Connecting to POP3 servers Pawel Lesnikowski 2009-03-21T18:12:11Z 2009-10-21T21:56:18Z <p>You can check <a href="http://www.lesnikowski.com/mail" rel="nofollow">Mail.dll .NET mail component</a>, it has SSL support, unicode, and multi-national email support:</p> <pre><code>Pop3 pop3 = new Pop3(); pop3.Connect("mail.host.com"); // Connect to server pop3.User = "user"; pop3.Password = "password"; pop3.Login(); // Login pop3.GetAccountStat(); // Get account statistics SimpleMailMessageBuilder builder = new SimpleMailMessageBuilder(); for(int i = 1; i &lt;= pop3.MessageCount; i++) { ISimpleMailMessage simpleMail = builder.CreateFromEml(pop3.GetMessage(i)); Console.WriteLine( simpleMail.Subject ); } pop3.Close(true); </code></pre> <p>You can download it here: <a href="http://www.lesnikowski.com/mail" rel="nofollow">http://www.lesnikowski.com/mail</a>.</p>