vote up 2 vote down star
7

I've been asked to write a Windows service in C# to periodically monitor an email inbox and insert the details of any messages received into a database table.

My instinct is to do this via POP3 and sure enough, Googling for ".NET POP3 component" produces countless (ok, 146,000) results.

Has anybody done anything similar before and can you recommend a decent component that won't break the bank (a few hundred dollars maximum)?

Would there be any benefits to using IMAP rather than POP3?

flag

8 Answers

vote up 3 vote down check

I recomment chilkat. They have pretty stable components, and you can get their email component for as cheap as $99 for a single developer. Personally, I think going with the whole package of components is a better deal, as it's only $289, and comes with many useful components. I'm not affiliated with them in any way, although I probably sound like I am.

link|flag
My only complaint with Chilkat is the API doesn't "feel" very .Net (if you know what I mean). e.g. "GetLastError()" instead of an exception. Great components though and a great price. Support is absolutely top-notch as well, wonderfully quick turn-around during the times I've had questions. – Aydsman Sep 30 '08 at 5:43
That's probably due to the fact that it's an older library that's been ported to .Net. – Kibbee Jan 8 at 1:40
Exceptions sure "feel" .net, but it's worth to comment that Google Code Guidelines uses error codes and assertions instead of exceptions. They also make it clear in the document that they don't really feel that using Exceptions is 'wrong', but they do provide some good reasons not to. – Rafael Almeida Aug 4 at 1:19
vote up -1 vote down

If you use an open source POP3 implementation or something freely available then you will have access to modify the code and expand it in the direction needed. A quick Google resulted in this C# POP3 code from Code Project to retrieve messages.

There's something empowering about rolling your own, or at least extending it.

alt text

link|flag
Also this won't break the bank as far as initial cost $0. However ongoing development work and overall "TCO" should be considered. – jdk Oct 21 at 22:24
vote up -1 vote down

C#Mail is easy to use It is a sample code for your needs

using (Pop3Client cl = new Pop3Client())
{
    cl.UserName = "MyUserName";
    cl.Password = "MyPassword";
    cl.ServerName = "MyServer";
    cl.AuthenticateMode = Pop3AuthenticateMode.Pop;
    cl.Ssl = false;
    cl.Authenticate();
    ///Get first mail of my mailbox
    Int64 MailCount = cl.GetTotalMessageCount();
    if (MailCount > PreviousMailCount)
    {
        for (i=PreviousMailCount + 1; i<=MailCount; i++)
        {
            Pop3Message mg = cl.GetMessage(i);
            ///Data property return live mail data
            String YourData = mg.Data;
            ///Decode and output attachment file data to stream
            Pop3Content ct = mg.Contents[0];
            mg.DecodeData(YourStreamObject);
            ///Write your code to save database with YourData and YourStreamObject....
        }
    }
}

you can get it from codeplex

http://csharpmail.codeplex.com/

it costs only $0. And I hope your help.

link|flag
vote up 0 vote down

Try Mail.dll .NET mail component, it's way cheaper than Chilkat's.

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 0 vote down

I would recommend AdvancedIntellect. There are components for POP3 and IMAP (ASPNetPOP3 and ASPNetIMAP). Good quality and very responsive support - I remember receiving replies to my questions on a weekend.

link|flag
vote up 1 vote down

Lumisoft is open-source and includes IMAP and POP clients (among other stuff). I've been using them for years with no problems.

link|flag
vote up 2 vote down

I use the free and open source SharpMimeTools in my application, BugTracker.NET. It has been very dependable:

http://anmar.eu.org/projects/sharpmimetools/

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

link|flag
Thanks Corey, I'll take a look. – Ian Nelson Sep 24 '08 at 19:08
vote up -1 vote down

How about WCF? It's free.

If you have an Exchange server: http://msdn.microsoft.com/en-us/library/bb397812.aspx

an example for pop3: http://bartdesmet.net/blogs/bart/archive/2006/09/13/4417.aspx

link|flag

Your Answer

Get an OpenID
or

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