Recommendations on parsing .eml files in C#

前端 未结 8 1036
旧巷少年郎
旧巷少年郎 2020-11-28 05:32

I have a directory of .eml files that contain email conversations. Is there a recommended approach in C# of parsing files of this type?

相关标签:
8条回答
  • 2020-11-28 05:56

    LumiSoft includes a Mime parser.

    Sasa includes a Mime parser as well.

    0 讨论(0)
  • 2020-11-28 06:02

    Try:

    • febootimail
    • SmtpExpress
    • LinkWS Newsletter Turbo
    • emlBridge - importing eml files into Outlook and virtually any other email client
    • Newsletter 2.1 Turbo
    • ThunderStor (emlResender)
    • Ruby (using eml2mbox). See jimbob method.
    • Evolution - create new message, attach the eml file,

    Write a program:

    • in C# (See [this][4] and this). See: Source code.
    • using Rebel Secure Mail library
    • .NET (See this, this and this)

    Workarounds:

    • $ cat mail.eml | mail -s -c But headers won't be parsed, neither attachments.
    • drop them into your GMail (Firefox will save them as attachments)
    0 讨论(0)
提交回复
热议问题