製品を閲覧する Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
以前は、一部のインスタンスで、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」から変換されたときに、電子メールの参照添付ファイルが表示されないことが観察されました。この問題は解決されました。
次の 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 にアクセスしてください。