製品を閲覧する

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.2.0

ダウンロード  サポートフォーラム 

ファイルの詳細

  • ダウンロード:
  • 18
  • ファイルサイズ:
  • 51.7 MB
  • Posted By:
  • DmitryS
  • ビュー:
  • 60
  • 追加日:
  • 2/28/2022

ファイルの詳細

API による TNEF 処理の改善

以前は、一部のインスタンスで、TNEF (Transport Neutral Encapsulation Format) 電子メールの添付ファイル形式でプレーンテキストの本文に問題がありました。この問題は、現在のバージョンの API で解決されています。

// The path to the File directory.
string dataDir = RunExamples.GetDataDir_Email();

MsgLoadOptions options = new MsgLoadOptions();
options.PreserveTnefAttachments = true;
MailMessage eml = MailMessage.Load(dataDir + "EmbeddedImage1.msg", options);
foreach (Attachment attachment in eml.Attachments)
{
    Console.WriteLine(attachment.Name);
}

参照添付サポート

参照添付ファイルのサポートが API に実装されました。添付ファイルへのアクセスをより適切に制御したい場合は、ローカル ファイル添付ファイルの代わりに参照添付ファイルを使用することをお勧めします。

var eml = MailMessage.Load("fileName");

var refAttach = new ReferenceAttachment("https://[attach_uri]")
{
    Name = "Document.docx",
    ProviderType = AttachmentProviderType.OneDrivePro,
    PermissionType = AttachmentPermissionType.AnyoneCanEdit
};

eml.Attachments.Add(refAttach);

EML から PST への変換のサポートの改善

以前のいくつかの例では、「EML」ファイルが「PST」から変換されたときに、電子メールの参照添付ファイルが表示されないことが観察されました。この問題は解決されました。

次の C# コード スニペットは、API を介した単純な「EML」から「PST」へのフォーマット変換を示しています。

using (var message = MailMessage.Load("sourceFile.eml")){
    using (var personalStorage = PersonalStorage.Create("outputFile.pst", FileFormatVersion.Unicode)){

        var inbox = personalStorage.RootFolder.AddSubFolder("Inbox");

        inbox.AddMessage(MapiMessage.FromMailMessage(message, MapiConversionOptions.UnicodeFormat));
	}
}

このリリースの機能、拡張機能、バグ修正の完全なリストについては、Aspose.Email for .NET 22.2 Release Notes にアクセスしてください。

 日本