vote up 2 vote down star
3

Looking for a POP3 Client for .NET that basically just lets me log into a server and grab all the emails out, and maybe send some. I grabbed Indy.Sockets off of CodePlex and got it running but its throwing errors trying to decode the mail headers. Really anything is fine if it works.

flag

80% accept rate

8 Answers

vote up 2 vote down check

Hi, as I wrote in the answer to the similar question (Reading Email using Pop3 in C#) the downloading message via the POP3 is the easy part of this task. The parsing of the message is much harder. Handling UNICODE, mangled emails/spams, internationalization issues, code for auto correction of errors which came from Outlook and Thunderbird and testing on big pile of messages is quite time consuming and takes a few months of development time.

I would try the code from the codeproject and if it suits your needs stick with it. In case of too many parsing problem the commercial email component with decent support could be a wise move. I would recommend our Rebex Mail ($149 single dev) but I'm biased. Feel free to browse for you own favorite ;-). At least it will be (in case of any problem) someone who is paid for solving your mail parsing problem.

Martin

link|flag
vote up 3 vote down

I use the one of Peter Huber. Has worked quite well for me. (Large amounts of mail > 2k in a batch)

http://www.codeproject.com/KB/IP/Pop3MailClient.aspx

Good luck!

link|flag
vote up 0 vote down

Ahh, tried that client out, but it doesn't parse out the headers of the mail, it just leaves it as one giant string. I'm going to check out some other libraries tomorrow, or just use the stuff we already have written.

link|flag
The MIME parsing code of BugTracker.NET, SharpMimeTools, definitely DOES parse the headers. Look at the file insert_bug.aspx, search for: .Header. – Corey Trager Sep 23 '08 at 7:35
vote up 0 vote down

This client cannot tell if the mail has attachment.

link|flag
vote up 1 vote down

My open source .NET application BugTracker.NET includes code for a POP3 client and code for parsing MIME. Both are actually borrowed from elsewhere. The MIME code is from SharpMimeTools. But you can see how it all works together in app.

See the files POP3Client.cs, POP3Main.cs, and insert_bug.aspx

link|flag
vote up 1 vote down

Check out Lumisoft, it's open source and has many features

link|flag
vote up 3 vote down

Try Mail.dll .NET email component. It's not free, but also not expensive.

It gives you a nice object structure of an entire email message. It has SSL support, POP3, IMAP and SMTP clients for sending and receiving.

Pop3 pop3 = new Pop3();
pop3.Connect("mail.host.com");           // Connect to server 

pop3.User = "lesnikowski";               
pop3.Password = "password";
pop3.Login();                            // Login

pop3.GetAccountStat();                   // Get account statistics

SimpleMailMessageBuilder builder = new SimpleMailMessageBuilder();

for(int i = 1; i <= pop3.MessageCount; i++)
{
    // Receive mail
    ISimpleMailMessage simpleMail = builder.CreateFromEml(pop3.GetMessage(i));

    // Write out received mail message
    Console.WriteLine( simpleMail.Subject );
    Console.WriteLine( simpleMail.TextDataString );
}
pop3.Close(true);

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

link|flag
vote up 2 vote down

I've used C#Mail on a project before and it works great. There's very little documentation, but it's easy to discover functionality through Intellisense.

There's two things to keep in mind, however:

  1. The SMTP functionality is incomplete. I don't see this one as much of a problem considering that .NET provides a pretty good SMTP library natively.
  2. The parameter Pop3Client.Available is set to true when it connects, but it doesn't poll to check if the connection remains that way. Thus, if you leave the connection open for a while, the server might disconnect your client, but the Available flag will still be true.
link|flag

Your Answer

Get an OpenID
or

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