vote up 1 vote down star

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?

flag

5 Answers

vote up 6 vote down

You can check Mail.dll .NET mail component, it has SSL support, unicode, and multi-national email support:

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);

You can download it here: http://www.lesnikowski.com/mail.

link|flag
vote up 0 vote down

I personally like the serverintellect components.

link|flag
serverintellect is a hosting company! – doekman Nov 18 '08 at 15:08
vote up 0 vote down

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/

link|flag
vote up 1 vote down

3rd party components are the way the go; much better than the alternative, which would be sending raw POP3 commands with NetStreams [shudder]

link|flag
vote up 0 vote down

Check out the EasyMail objects from Quiksoft. They are very easy to use and the support is really good.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.