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.
|
|
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 |
||
|
|
|
|
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! |
|||
|
|
|
|
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. |
||
|
|
|
This client cannot tell if the mail has attachment. |
||
|
|
|
|
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 |
|||
|
|
|
|
Check out Lumisoft, it's open source and has many features |
||
|
|
|
|
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.
You can download it here: http://www.lesnikowski.com/mail. |
|||
|
|
|
|
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:
|
||
|
|
