浏览我们的产品

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 for .NET 22.7

下载  支持论坛 

文件详情

  • Downloads:
  • 1
  • File Size:
  • 51.95MB
  • Date Added:
  • 30/7/2022

文件详情

EML 到 PDF & EML 到 MHTML 转换

据观察,在 EML 到 PDF 或 EML 到 MHTML 的转换过程中,行距丢失了。此问题现已修复。

从服务器的邮箱中获取电子邮件 UID

能够获取从服务器邮箱接收到的消息的消息标识信息(例如 UID 或序列号)。

using (var client = new ImapClient(imapHost, port, emailAddress, password, securityOption))
{
    var msgs = client.ListMessages("INBOX").Take(5);
    var seqIds = msgs.Select(t => t.SequenceNumber);
    var msgsViaFetch = client.FetchMessages(seqIds);
	
    for (var i = 0; i < 5; i++)
    {
        var thisMsg = msgsViaFetch[i];
        Console.WriteLine($"Message ID:{seqIds.ElementAt(i)} SequenceNumber: {thisMsg.ItemId.SequenceNumber} Subject:{thisMsg.Subject}");
    }
}

有关此版本中的功能、增强功能和错误修复的完整列表,请访问 Aspose.Email for .NET 22.7 Release Notes

 简体中文