vote up 1 vote down star
2

I have a project that utilizes the javax.mail.internet.MimeMessage and other related classes that does mime parsing for emails that we receive. This needs to be ported to .NET.

What .Net 3rd party or built in library can I use to replace the Java classes that I'm using?

EDIT: Anything change in the last 9 months since I asked this question?

flag

73% accept rate

4 Answers

vote up 3 vote down

I've not used javax.mail.internet.MimeMessage, so I can't say how any of this compares, but .NET 2.0 and beyond does have a System.Net.Mime namespace which might have something useful for you.

Otherwise, I used Chilkat MIME .NET a long time ago and was happy with it.

link|flag
vote up 2 vote down

I have used both, and concur with Ryan that the System.Net.Mime and sibling namespaces provide very similar functionality. If anything, I think you'll find that the .Net APIs are cleaner and easier to work with.

link|flag
vote up 1 vote down

SharpMimeTools, which is free and open source.

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

It's what I use in my application, BugTracker.NET and it has been very dependable.

link|flag
vote up 2 vote down

Try using Mail.dll:

www.lesnikowski.com/mail

It's on the market for quite a while, and is well tested.

Imap imap = new Imap();

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

imap.SelectInbox();
List<long> uids = imap.SearchFlag(Flag.Unseen);

foreach (long uid in uids)
{
    string eml = imap.GetMessageByUID(uid);
    ISimpleMailMessage message = new SimpleMailMessageBuilder()
        .CreateFromEml(eml);

    Console.WriteLine(message.Subject);
}
imap.Close(true);

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

link|flag

Your Answer

Get an OpenID
or

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