製品を閲覧する

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:
  • ドミトリー
  • ビュー:
  • 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 にアクセスしてください。

 日本