Browse our Products

Aspose.Email for Java 21.2 Release Notes

All Changes

KeySummaryCategory
EMAILNET-40088Improve Imap.ThreadGrCommand to get threads list for GMailEnhancement
EMAILNET-40084Error loading folder by its EntryIdStringEnhancement
EMAILJAVA-34783Getting modified date OPFMessageCopyModDate for message in OLMEnhancement
EMAILNET-40107Body Text of MSG File looks different from how it looks in OutlookBug
EMAILNET-40115The ContentID cannot contain a ‘<’ or ‘>’ characterBug
EMAILNET-39978Aspose email gives an error on usingBug
EMAILJAVA-34779Outlook Task / TaskRequest in EML format shows MessageClass as “IPM.Note”Bug
EMAILNET-40093EML loading is getting stuckBug
EMAILNET-40063Fix IEWSClient.CreateNote methodBug
EMAILNET-40085Fix IEWSClient.UpdateContact methodBug
EMAILNET-40128Wrong inline attachment name after EML to MSG conversionBug
EMAILNET-40125MailMessage.HtmlBodyText in Aspose.Email 17.9 and Aspose.Email 20.10Bug
EMAILJAVA-34792Value for the header 924057603 (PR_ATTACH_FLAGS) is not properly populatedBug
EMAILJAVA-34790Recipient and Attachment information not getting fetched using Graph clientBug
EMAILJAVA-34788Errorcode=529 JSONObject isDeliveryReceiptRequested is not a boolean in MsGraphBug
EMAILJAVA-34787Exception while generating large MSG - ArgumentOutOfRangeException: Non-negative number requiredBug

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();
}