vote up 3 vote down star
3

.NET provides a great library for working with SMTP for sending messages, however, there is not an implementation of a Pop3 client, or IMAP client for working with receiving e-mail from a mail host.

Does anyone know of a good component that can provide Pop, IMAP, or both support? I know that code project has implementations, but from my experience finding a "good" one is hard.

flag

10 Answers

vote up 1 vote down check

I asked this same question last month.

I was delighted with the suggestion from Kibbee to use a component provided by Chilkat.

link|flag
Two downvotes in a day for this innocuous year-old and accepted answer?! What gives? – Ian Nelson Nov 25 at 14:01
Probably because you linked to a paid application, which everyone here hates for some reason, despite the fact that 90% of us are writing paid software... – Daniel T. Dec 8 at 3:10
vote up 2 vote down

Try Mail.dll .NET mail component, you can download it for free.

Mail.dll includes POP3, IMAP and SMTP clients and powerful MIME parser.

Imap imap = new Imap();
imap.Connect("imap.server.com");

imap.User = "user";
imap.Password = "password";
imap.Login();

imap.SelectInbox();
List<long> uidList = imap.SearchFlag(Flag.Unseen);
foreach (long uid in uidList)
{
    ISimpleMailMessage mail = new SimpleMailMessageBuilder()
        .CreateFromEml(imap.GetMessageByUID(uid));
    Console.WriteLine(mail.Subject);
}
imap.Close(true);

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

link|flag
vote up 1 vote down

Lumisoft includes quite complete IMAP, POP and SMTP clients. I've used them for years.

link|flag
vote up 0 vote down

Check out http://www.developerfusion.co.uk/show/4071/

It has a good walk through for implementing a basic POP3 client. Doesn't explain handling attachments, but if you examine the contents of the messages, you can figure that out easily enough.

link|flag
vote up 0 vote down

Mitchel,

If you don't mind commercial alternatives, I've personally used the IPWorks! components from /n software. They have support for both Pop and IMAP with full support for SSL as well.

link|flag
vote up 0 vote down

I've used the component from Rebex. Worked well.

link|flag
Adding link: Rebex IMAP/POP3 component can be downloaded from rebex.net/secure-mail.net – Martin Vobr at Rebex Jan 29 at 22:34
vote up 0 vote down

I have had good luck with ANPOP: http://www.emailarchitect.net/webapp/popcom/

I have not used their POP3 or IMAP clients, but I have used their MIME parsing capabilities in a 2.5m emails a day production environment. Their support has always turned around bug reports quickly.

link|flag
vote up 0 vote down

My open source app BugTracker.NET includes free open source code for working with POP3 and parsing MIME (written by others). It has been very solid for me.

link|flag
vote up 0 vote down

Hi, I'm sure that Rebex Mail and Rebex Secure Mail are pretty solid. I know, because I wrote a pretty big pile of unit tests for it. Check tutorial and samples. It supports both POP3 and IMAP.

Disclaimer: I'm working at Rebex so better don't believe me ;-) and check it yourself.

link|flag
vote up 0 vote down

I used Lumisoft library for imap. In that, envelope.from,envelope.to are retreived as mailbox list. I can see it only as "LumiSoft.Net.Mail.Mail_t_Mailbox[]". How to convert this to string?? Plz anybody help me.

link|flag
1  
I would post a new question with detail – Mitchel Sellers May 28 at 19:48

Your Answer

Get an OpenID
or
never shown

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