浏览我们的产品

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

下载  支持论坛 

文件详情

  • 下载:
  • 4
  • 文件大小:
  • 51.7 MB
  • Posted By:
  • DmitryS
  • 浏览量:
  • 17
  • 添加日期:
  • : 2 weeks ago [3/31/2022]

文件详情

从 PST 中提取电子邮件

Previously, in some instances the messages extracted from PST file were not being opened in the Outlook® 2016. 现在这个问题已经解决了。

在 iCalendar ICS 文件中设置标题

添加了在 ICS 文件中设置“X-ALT-DESC”标头的功能。 X-ALT-DESC 标头是 iCalendar (.ics) 项目中的 HTML 格式描述。

要使用 HTML 内容创建约会,请将 IsDescriptionHtml 属性设置为 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>"
};

读取附件时性能更快

在某些情况下,据观察,在使用 IMAP API 读取大小为 5MB 的附件详细信息时,API 的性能会下降。现在这个问题已经解决了。

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

有关此版本中的功能、增强功能和错误修复的完整列表,请访问 Aspose.Email for .NET 22.3 Release Notes

 简体中文