Blader door onze producten

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 für .NET 22.2.0

Downloaden  Helpforum 

Bestandsdetails

  • Downloads:
  • 18
  • Dateigröße:
  • 51.7 MB
  • Posted By:
  • DmitryS
  • Ansichten:
  • 60
  • Hinzugefügt am:
  • 2/28/2022

Bestandsdetails

Besseres TNEF-Handling über API

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

Support für Referenzanhänge

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

Verbesserte Unterstützung für die EML-zu-PST-Konvertierung

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.

 Deutsch