Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Email for .NET 22.3

Download  Support Forum 

File Details

  • Downloads:
  • 4
  • File Size:
  • 51.7 MB
  • Posted By:
  • DmitryS
  • Views:
  • 17
  • Date Added:
  • : 2 weeks ago [3/31/2022]

File Details

Email Extraction from PST

Previously, in some instances the messages extracted from PST file were not being opened in the Outlook® 2016. This issue has now been resolved.

Set Header in iCalendar ICS File

Added the feature to set the X-ALT-DESC header within an ICS file. The X-ALT-DESC header is a HTML formatted description in iCalendar (.ics) items.

For creating an appointment with HTML content, set the IsDescriptionHtml property to true.

var appointment = new Appointment("Bygget 83",
    DateTime.UtcNow, // start date
    DateTime.UtcNow.AddHours(1), // end date
    new MailAddress("TintinStrom@from.com", "Tintin Strom"), // organizer
    new MailAddress("AinaMartensson@to.com", "Aina Martensson")) // attendee
{
    IsDescriptionHtml = true,

    Description = @"
      <html>
       <style type=""text/css"">
        .text {
               font-family:'Comic Sans MS';
               font-size:16px;
              }
       </style>
      <body>
       <p class=""text"">Hi, I'm happy to invite you to our party.</p>
      </body>
      </html>"
};

Faster Performance While Reading Attachments

In some instances, it as observed that the performance of the API deteriorated while reading attachment detail with size 5MB using IMAP API. This issue has now been resolved.

var messageInfoCollection = imapClient.ListMessages();
    
foreach (var message in messageInfoCollection)
{
    var attachmentInfoCollection = imapClient.ListAttachments(message.SequenceNumber);

    foreach (var attachmentInfo in attachmentInfoCollection)
    {
        Console.WriteLine("Attachment: {0} (size: {1})", attachmentInfo.Name, attachmentInfo.Size);
    }
}

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Email for .NET 22.3 Release Notes.

 English