In 20.7 long email addresses would wrap in the middle between the display name and address. After 20.8 the email is truncated or causes the page to expand beyond A4 width when using AdjustToWidestPage.
We have been able to mitigate this by adding a <wbr> after the space in the middle of the email address. However in 20.7 the space was enough.
Sample Code
const string html = “<html><body style=‘font-size: 12pt’>To: "verylongemailwrap.test@quitealongdomain.test.example.com" <verylongemailwrap.test@quitealongdomain.test.example.com></body></html>”;
using (var document = new Aspose.Html.HTMLDocument(html, “.”))
Aspose.Html.Converters.Converter.ConvertHTML(document, new PdfSaveOptions {PageSetup = {AdjustToWidestPage = true}}, “out.pdf”);