Navegue pelos nossos produtos

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 para .NET 22.3

Download  Fórum de suporte 

Detalhes do arquivo

  • Downloads:
  • 4
  • Tamanho do arquivo:
  • 51.7 MB
  • Posted By:
  • DmitryS
  • Visualizações:
  • 17
  • Data de adição:
  • : 2 weeks ago [3/31/2022]

Detalhes do arquivo

Extração de e-mail do PST

Previously, in some instances the messages extracted from PST file were not being opened in the Outlook® 2016. Este problema já foi resolvido.

Definir cabeçalho no arquivo iCalendar ICS

Adicionado o recurso para definir o cabeçalho X-ALT-DESC em um arquivo ICS. O cabeçalho X-ALT-DESC é uma descrição formatada em HTML nos itens do iCalendar (.ics).

Para criar um compromisso com conteúdo HTML, defina a propriedade IsDescriptionHtml como 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>"
};

Desempenho mais rápido ao ler anexos

Em alguns casos, observou-se que o desempenho da API se deteriorou ao ler os detalhes do anexo com tamanho de 5 MB usando a API IMAP. Este problema já foi resolvido.

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

Para obter uma lista completa de recursos, aprimoramentos e correções de bugs nesta versão, visite Aspose.Email for .NET 22.3 Release Notes.

 Português