Browse our Products

Aspose.Email for Java 26.5 Release Notes

All Changes

KeySummaryCategory
EMAILNET-41498Implement the method to build a TGZ backup archive from eml filesFeature
EMAILNET-41749Implement Throttling Handling for Microsoft Graph in IGraphClientEnhancement
EMAILNET-41750Implement Large Message Upload via Graph Upload Session in IGraphClientEnhancement
EMAILNET-41751MSG to PDF: throws System.FormatExceptionBug
EMAILNET-41765Null ref exception when saving vcfBug

New Features

TGZ Backup Builder for EML Files Introduced

A new feature can create Zimbra-compatible TGZ archives from collections of *.eml files, simplifying backup and migration workflows. The builder scans directories recursively and provides detailed results for each build operation.

Public API Changes:

  • TgzBackupBuilder.build(String inputDirectory, String outputArchive, String rootFolderName)
  • BuildResult

Code Example:

String input = "C:\\input";
String archive = "C:\\archive.tgz";
BuildResult result = TgzBackupBuilder.build(input, archive, "Imported");