Connecting to POP3 servers - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T13:32:42Zhttp://stackoverflow.com/feeds/question/298886http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/298886/connecting-to-pop3-servers1Connecting to POP3 serversBlankman2008-11-18T14:30:44Z2009-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#2988940Answer by Robert Wilkinson for Connecting to POP3 serversRobert Wilkinson2008-11-18T14:34:24Z2008-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#2989071Answer by Bullines for Connecting to POP3 serversBullines2008-11-18T14:37:47Z2008-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#2989460Answer by Israr Khan for Connecting to POP3 serversIsrar Khan2008-11-18T14:50:38Z2008-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#2989530Answer by Mischa Kroon for Connecting to POP3 serversMischa Kroon2008-11-18T14:55:29Z2008-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#6696976Answer by Pawel Lesnikowski for Connecting to POP3 serversPawel Lesnikowski2009-03-21T18:12:11Z2009-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 <= 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>