vote up 15 vote down star
13

I have a web application that requires a server based component to periodically access POP3 email boxes and retrieve emails. The service then needs to process the emails which will invlove:

  • Validating the email against some business rules (does it contain a valid reference in the subject line, which user sent the mail etc)
  • Analysing and saving any attachments to disk
  • Take the email body and attachment details and create a new item in the database
  • Or update an existing item where the reference matches the incoming email subject line

What is the best way to approach this? I really dont want to have to write a POP3 client from scratch, but I need to be able to customize the processing of emails. Ideally I would be able to plug in some component that does the access and retrieval for me, returning arrays of attachments, body text, subject line etc ready for my processing...

[ UPDATE: Reviews ]

Ok, so I have spent a fair amount of time looking into (mainly free) .NET Pop3 libraries so I thought I'd provide a short review of some of those mentioned below and a few others:

  • Pop3.net - free - works ok, very basic in terms of functionality provided. This is pretty much just the Pop3 commands and some base64 encoding, but it's very straight forward - probably a good introduction
  • Pop3 Wizard - commercial / some open source code - couldn't get this to build, missing dlls, I wouldn't bother with this
  • C#Mail - free - works well, comes with Mime parser and SMTP client, however the comments are in Japanese (not a big deal) and it didn't work with SSL 'out of the box' - I had to change the SslStream constructor after which it worked no problem
  • OpenPOP - free - hasn't been updated for about 5 years so it's current state is .NET 1.0, doesn't support SSL but that was no problem to resolve - I just replaced the existing stream with an SslStream and it worked. Comes with Mime parser.

Of the free libraries, I'd go for C#Mail or OpenPOP.

I looked at a few commercial libraries: Chillkat, Rebex, RemObjects, JMail.net. Based on features, price and impression of the company I would probably go for Rebex and may in the future if my requirements change or I run into production issues with either of C#Mail or OpenPOP.

In case anyone's needs it, this is the replacement SslStream constructor that I used to enable SSL with C#Mail and OpenPOP:

            SslStream stream = new SslStream(clientSocket.GetStream(), false, delegate(object sender, X509Certificate cert, X509Chain chain, SslPolicyErrors errors) { return true; });
flag

51% accept rate
Thanks for updating and providing details of your research. – Neil Barnwell Dec 8 '08 at 14:06
+1; Had a very similar requirement. Thanks for doing the research. – tsilb Dec 30 at 16:55
A small comment: I've tested several of the implementations mentioned,and had to use the latest daily from anmar.eu.org/projects/sharpmimetools/… to get correct decoding of MIME. c#Mail failed to decode correctly non-ascii,and most others failed at utf8, q encoding or other detail. – Bruno Lopes Jan 3 at 2:40
I use SharpMimeTools in my app and it's very solid. – Corey Trager Jul 14 at 12:57

15 Answers

vote up 6 vote down

I'm a author of C#Mail component. I modify the constructor of SslStream class and upload it at codeplex.Check it out!

link|flag
hello and cool :) – flesh Dec 24 '08 at 17:45
vote up 4 vote down

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

IMAP protocol is also supported.

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

link|flag
vote up 3 vote down

I did an implementation of OpenPop for a project recently, and was happy with it. It does what it says on the tin. (and it's free.)

link|flag
vote up 3 vote down

I'm a author of C#Mail component. I modified q encoding with asistance of Bruno Lopes.He give me an advise and the latest version of C#Mail is solved the issue. Thanks a lot for him!!

link|flag
Glad to have been of assistance :) – Bruno Lopes Feb 19 at 20:50
vote up 2 vote down

C# Mail is available on Codeplex and is pretty easy to use.

link|flag
vote up 2 vote down

Lumisoft is open-source and includes a POP client (among other stuff). It's been around for many years, very stable.

link|flag
vote up 1 vote down

there are several pop3 client implementations around at codeproject.com . i have not evaluated them, but maybe you can find what you need there. if not, i can say that pop3 is quite a simple protocol. you can even read your pop3 box with telnet if you know 4-5 commands.

you actually just need this commands and maybe some base64 decoding for attachments. that's it.

link|flag
2  
I think you underestimate how tricky and varied MIME can be in the real world. – Corey Trager Jul 14 at 12:57
vote up 1 vote down

Jmail.NET. Don't look further. Note that the free version doesn't include POP3. You'll want to take the Standard version (or more). Don't worry, it's not expensive.

link|flag
vote up 1 vote down

DasBlog uses a good (and free) one - grab the source package. I've used it (but I can't remember who wrote it, and I'm not on my laptop - Pavel L I think?). It's not perfect, and it doesn't do SSL, but it works nicely otherwise.

link|flag
dasBlog uses Lesnikowski.Pawel.Mail.Pop3 (lesnikowski.com/mail). It is now a commercial product but the version in dasblog is still open source – TonyB Nov 6 '08 at 18:45
vote up 1 vote down

Take a look at the POP3 integration in my open source app BugTracker.NET at http://ifdefined.com/bugtrackernet.html. All free and open source. The hardest part, the mime parsing, is done in BugTracker.NET by SharpMimeTools at http://anmar.eu.org/projects/sharpmimetools/

The important files that show how I'm using the POP3 and MIME logic are POP3Client.cs and insert_bug.aspx.

link|flag
oh yeah. Mime is a PITA! If it's all plaintext, tho, it's not too bad :) I hope for their sake it's plaintext :) – Nic Wise Oct 25 '08 at 17:46
vote up 1 vote down

I made my own Mime parser and added it to CodePlex because I kept running into unhandled exceptions with the other ones when it came to strange encodings og weird combinations of attachments. The pop3 client implementation is crude, just made for testing purposes, but handles that ok. The Mime parser part populates the standard MailMessage object, so that you can easily forward it at it is. I can expand/improve it on request, but for now it does the job ok for my needs. Feel free to check it out.

http://www.codeplex.com/mimeParser

link|flag
vote up 1 vote down

If you need SSL to access gmail.. here is some modifications to the OpenPOP.net library that gives it SSL support.

OpenPop.net modified to include SSL support for accessing Gmail

link|flag
vote up 0 vote down

If you don't mind paying for a component, we've had great success with chilkat in the past. For a couple of hundred bucks you get a library that's jam packed full of goodness.

link|flag
vote up 0 vote down

Damien Carol, please could you give us a example about how use C#Email library?.

Thanks

link|flag
vote up 0 vote down

C# Mail is licensed under GPLv2 - you should take this into consideration.

link|flag

Your Answer

Get an OpenID
or

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