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

Downloaden  Helpforum 

Bestandsdetails

  • Downloads:
  • 4
  • Dateigröße:
  • 51.7 MB
  • Posted By:
  • DmitryS
  • Ansichten:
  • 17
  • Hinzugefügt am:
  • : 2 weeks ago [3/31/2022]

Bestandsdetails

E-Mail-Extraktion aus PST

Previously, in some instances the messages extracted from PST file were not being opened in the Outlook® 2016. Dieses Problem wurde nun behoben.

Header in iCalendar ICS-Datei setzen

Die Funktion zum Setzen des X-ALT-DESC-Headers in einer ICS-Datei wurde hinzugefügt. Der Header X-ALT-DESC ist eine HTML-formatierte Beschreibung in iCalendar-Elementen (.ics).

Um einen Termin mit HTML-Inhalt zu erstellen, setzen Sie die Eigenschaft „IsDescriptionHtml“ auf „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>"
};

Schnellere Leistung beim Lesen von Anhängen

In einigen Fällen wurde beobachtet, dass sich die Leistung der API beim Lesen von Anhangsdetails mit einer Größe von 5 MB mit der IMAP-API verschlechterte. Dieses Problem wurde nun behoben.

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

Eine vollständige Liste der Funktionen, Verbesserungen und Fehlerbehebungen in dieser Version finden Sie unter Aspose.Email for .NET 22.3 Release Notes.

 Deutsch