Browse our Products

Aspose.Email for .NET 22.10 Release Notes

All Changes

KeySummaryCategory
EMAILNET-40735Unable to set DisplayName for attached MSGEnhancement
EMAILNET-40763Message Headers are lost while reading OLMBug
EMAILNET-40732Issues with reading OLM and save messagesBug
EMAILNET-40774OLM reader does not correctly extract signed/encrypted messagesBug
EMAILNET-40759ExchangeException is thrown by CreateAppointment methodBug
EMAILNET-40760System.FormatException is thrown while reading TGZBug
EMAILNET-40734Multiple recipient header merged into a single header after EML to MSG conversionBug
EMAILNET-40761EML to MSG: “\n” characters are appended upon conversionBug
EMAILNET-40756The From header is not rendered after MSG to EML conversionBug
EMAILNET-40746Converting Appointment from Calendar to MSG hangsBug
EMAILNET-40742ICS to MSG conversion fails when certain keys missing using PythonBug
EMAILNET-40773OLM reader does not correctly extract signed/encrypted messagesBug
EMAILNET-40758IEWSClient.AppendMessage thorws System.ArgumentOutOfRangeExceptionBug

New Enhancements

Renaming an Attachment in MapiMessage

It is possible to edit the DisplayName property value in MapiMessage attachments now.

Code samples:

var msg = MapiMessage.Load(fileName);
msg.Attachments[0].DisplayName = "New display name 1";
msg.Attachments[1].DisplayName = "New display name 2";