Browse our Products

Aspose.Email for Java 25.4 Release Notes

All Changes

KeySummaryCategory
EMAILNET-41555Add overload of MapiContact.FromVCard method with VCardLoadOptions parameterEnhancement
EMAILNET-41528Provide using stream instead filename to preserve embedded attachment’s icons when saving message to htmlEnhancement
EMAILNET-41548System.InvalidOperationException while creating MboxStorageReaderBug
EMAILNET-41538Searching emails by sender address (From) returns null in PST fileBug
EMAILNET-41556Error Unknown type of ActionProperty while loading AppointmentBug
EMAILJAVA-35365NegativeArraySizeException on adding files to PSTBug
EMAILJAVA-35367The issue occurs when trying to mark as read or unread in a PST fileBug
EMAILJAVA-35366Incorrect data in the VCALENDAR PRIORITY fieldBug
EMAILJAVA-35364Pagination in FolderInfo.getContents(MailQuery query… does not work correctly.Bug

New Enhancements

Add overload of MapiContact.FromVCard method with VCardLoadOptions parameter

New Overloads:

  • Introduced overloads for fromVCard that accept VCardLoadOptions instead of charset.
  • Deprecated older overloads that use Charset.

Example:

MapiContact mapiContact = MapiContact.fromVCard("contact.vcf", new VCardLoadOptions());
System.out.println(mapiContact.getNameInfo().getDisplayName());

Note:
Obsolete methods using Charset are scheduled for removal in a future version.