Blader door onze producten 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.
Zuvor hatte das E-Mail-Anhangsformat TNEF (Transport Neutral Encapsulation Format) in einigen Fällen Probleme mit dem Klartexttext. Dieses Problem wurde in der aktuellen Version der API behoben.
// 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); }
Die Unterstützung für die Referenzanhänge wurde in der API implementiert. Wenn Sie den Zugriff auf einen Anhang besser kontrollieren möchten, kann ein Referenzanhang anstelle der lokalen Dateianhänge vorzuziehen sein.
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);
In einigen früheren Fällen wurde beobachtet, dass beim Konvertieren von „EML“-Dateien aus „PST“ die Referenzanhänge der E-Mails nicht angezeigt wurden. Dieses Problem wurde nun behoben.
Das folgende C#-Code-Snippet demonstriert eine einfache Formatkonvertierung von „EML“ in „PST“ über die API:
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)); } }
Eine vollständige Liste der Funktionen, Verbesserungen und Fehlerbehebungen in dieser Version finden Sie unter Aspose.Email for .NET 22.2 Release Notes.