Aspose.Email for .NET 22.6 Release Notes

All Changes

KeySummaryCategory
EMAILNET-40606Extract DTSTAMP from PST and save as ICS changes DTSTAMP to current timestampEnhancement
EMAILNET-40611POP client does not AUTH automatically if CAPA command is not supportedBug
EMAILNET-40620Word to EML conversion generate body content as attachmentBug
EMAILNET-40622Formatting not retained for DOCX as bodyBug
EMAILNET-40612VCardContactSave omits data after resaving VCFBug
EMAILNET-40613Questionmarks when loaded FromMailMessageBug

New Enhancements

Extracting calendar item from PST and save as ICS with original timestamp.

Changes in public API:

MapiCalendarIcsSaveOptions - Allows to specify additional options when saving MapiCalendar to Ics format. MapiCalendarIcsSaveOptions.KeepOriginalDateTimeStamp - Allows keep original DateTimeStamp value in output file.

Code samples:


var cal = pst.ExtractMessage(msgInfo).ToMapiMessageItem() as MapiCalendar;

if (cal != null)
{
  cal.Save("cal.ics", new MapiCalendarIcsSaveOptions() { KeepOriginalDateTimeStamp = true});
}