Aspose.Email for Java 22.10 Release Notes

All Changes

Key Summary Category
EMAILNET-40735 Unable to set DisplayName for attached MSG Enhancement
EMAILNET-40763 Message Headers are lost while reading OLM Bug
EMAILNET-40732 Issues with reading OLM and save messages Bug
EMAILNET-40774 OLM reader does not correctly extract signed/encrypted messages Bug
EMAILNET-40759 ExchangeException is thrown by CreateAppointment method Bug
EMAILNET-40760 System.FormatException is thrown while reading TGZ Bug
EMAILNET-40734 Multiple recipient header merged into a single header after EML to MSG conversion Bug
EMAILJAVA-35112 EML to MSG: ā€œ\nā€ characters are appended upon conversion Bug
EMAILNET-40756 The From header is not rendered after MSG to EML conversion Bug
EMAILNET-40746 Converting Appointment from Calendar to MSG hangs Bug
EMAILNET-40742 ICS to MSG conversion fails when certain keys missing using Python Bug
EMAILNET-40773 OLM reader does not correctly extract signed/encrypted messages Bug
EMAILNET-40758 IEWSClient.AppendMessage thorws System.ArgumentOutOfRangeException Bug
EMAILJAVA-35118 Implement EWSClient Reply and Forward methods by Referenced message URI Enhancement
EMAILJAVA-35109 Email Connection to Exchange Server is taking too much time Bug
EMAILJAVA-35108 SendGrid LinkedResources Issue (Multipart attachments) Bug

New Enhancements

Renaming an Attachment in MapiMessage

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

Code samples:

MapiMessage msg = MapiMessage.load(fileName);
msg.getAttachments().get_Item(0).setDisplayName("New display name 1");
msg.getAttachments().get_Item(1).setDisplayName("New display name 2");