MimeKit is an Open Source library for creating and parsing MIME messages with support for S/MIME. It also supports parsing of Unix mbox files. Unlike any other .NET MIME parser, MimeKit's parser does not parse string input nor does it use a TextReader. Instead, it parses raw byte streams, thus allowing it to better support undeclared 8bit text in headers as well as message bodies. It also means that MimeKit's parser is significantly faster than other .NET MIME parsers. MimeKit's parser also uses a real tokenizer when parsing the headers rather than regex or string.Split() like most other .NET MIME parsers. This means that MimeKit is much more RFC-compliant than any other .NET MIME parser out there, including the commercial implementations. In addition to having a far superior parser implementation, MimeKit's object tree is not a derivative of System.Net.Mail objects and thus does not suffer from System.Net.Mail's massive limitations or bugs.
dotnet add package MimeKit --version 0.5.0
Install-Package MimeKit -Version 0.5.0
| 作者 | Jeffrey Stedfast |
|---|---|
| 发布时间 | 1900-01-01 00:00:00 |
| 项目主页 | http://github.com/jstedfast/MimeKit |
| 许可证 | http://opensource.org/licenses/MIT |