Aspose.Email for .NET 22.8 Release Notes

All Changes

KeySummaryCategory
EMAILNET-40650Preserve TNEF attachments in MBOX->PST and PST->MBOXEnhancement
EMAILNET-40661Danish characters are lost after re-saving MSGBug
EMAILNET-40658MSG to HTML conversion generates incorrect outputBug
EMAILNET-40655Creating Appointment in O365 with Aspose 22.6 returns ErrorInvalidPropertySetBug

New Enhancements

Configuring the load options when reading messages from MBOX

Changes in public API:

  • MailStorageConverter.MboxMessageOptions property - Gets or sets email load options when parsing an Mbox storage.
  • MboxrdStorageReader.ReadNextMessage(EmlLoadOptions options) method - EmlLoadOptions parameter specifies options when reading message from Mbox storage.

Code samples:

var reader = new MboxrdStorageReader(fileName, new MboxLoadOptions());
// Read messages preserving tnef attachments.
var eml = reader.ReadNextMessage(new EmlLoadOptions {PreserveTnefAttachments = true});
MailStorageConverter.MboxMessageOptions(new EmlLoadOptions {PreserveTnefAttachments = true});
// Convert messages from mbox to pst preserving tnef attachments.
var pst = MailStorageConverter.mboxToPst("Input.mbox", "Output.pst");