Aspose.Email for Java 21.2 Release Notes
This page contains release notes information for Aspose.Email for Java 21.2
All Changes
Key | Summary | Category |
---|---|---|
EMAILNET-40088 | Improve Imap.ThreadGrCommand to get threads list for GMail | Enhancement |
EMAILNET-40084 | Error loading folder by its EntryIdString | Enhancement |
EMAILJAVA-34783 | Getting modified date OPFMessageCopyModDate for message in OLM | Enhancement |
EMAILNET-40107 | Body Text of MSG File looks different from how it looks in Outlook | Bug |
EMAILNET-40115 | The ContentID cannot contain a ‘<’ or ‘>’ character | Bug |
EMAILNET-39978 | Aspose email gives an error on using | Bug |
EMAILJAVA-34779 | Outlook Task / TaskRequest in EML format shows MessageClass as “IPM.Note” | Bug |
EMAILNET-40093 | EML loading is getting stuck | Bug |
EMAILNET-40063 | Fix IEWSClient.CreateNote method | Bug |
EMAILNET-40085 | Fix IEWSClient.UpdateContact method | Bug |
EMAILNET-40128 | Wrong inline attachment name after EML to MSG conversion | Bug |
EMAILNET-40125 | MailMessage.HtmlBodyText in Aspose.Email 17.9 and Aspose.Email 20.10 | Bug |
EMAILJAVA-34792 | Value for the header 924057603 (PR_ATTACH_FLAGS) is not properly populated | Bug |
EMAILJAVA-34790 | Recipient and Attachment information not getting fetched using Graph client | Bug |
EMAILJAVA-34788 | Errorcode=529 JSONObject isDeliveryReceiptRequested is not a boolean in MsGraph | Bug |
EMAILJAVA-34787 | Exception while generating large MSG - ArgumentOutOfRangeException: Non-negative number required | Bug |
New Enhancements
Getting Message Modified Date in OLM
An OlmMessageInfo.getModifiedDate property has been added to get the message modified date.
Code sample:
for (OlmMessageInfo messageInfo : inboxFolder.enumerateMessages()) {
Date modifiedDate = messageInfo.getModifiedDate();
}