PeterO.MailLib 0.10.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package PeterO.MailLib --version 0.10.0
NuGet\Install-Package PeterO.MailLib -Version 0.10.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PeterO.MailLib" Version="0.10.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PeterO.MailLib --version 0.10.0
#r "nuget: PeterO.MailLib, 0.10.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PeterO.MailLib as a Cake Addin
#addin nuget:?package=PeterO.MailLib&version=0.10.0

// Install PeterO.MailLib as a Cake Tool
#tool nuget:?package=PeterO.MailLib&version=0.10.0

A .NET library for parsing and generating Internet email messages.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.15.0 1,893 1/16/2020
0.14.0 581 8/20/2019
0.13.0 794 8/29/2018
0.12.0 842 7/20/2018
0.11.0 923 6/29/2018
0.10.0 1,025 11/29/2016
0.9.1 1,044 12/11/2015
0.8.1 1,333 11/22/2015

Version 0.10.0:

- Character encoding conversion library moved out of this library (see [PeterO.Encoding](https://github.com/peteroupc/Encoding); currently uses version 2.0 of that library.
- Updated normalization and IDNA data to Unicode 9.0
- Normalization implementation renamed to NormalizerInput from NormalizerCharacterInput; the latter class is now deprecated
- Add GetHeaderArray, SetDate, and GetDate methods of Message class
- Add support for parsing several new header fields
- Date header field is included in generated messages
- Improve MakeFilename method of ContentDisposition class
- Fix bugs in Unicode normalization implementation
- Fixed several bugs and addressed corner cases in message generation, such as Quoted-Printable encoding
- In the .NET version of the source code, documentation is moved out of the source code and placed into a consolidated XML file
- SetBody method of Message class now returns the Message object that was edited
- Other bug fixes