Converting any small email (MSG) to PDF, only creates an empty page, if custom width and height is used.
The issue only seems to happen when both is true, a small (single page?) Email is used and custom size is provided.
I used GroupDocs.Conversion 24.4 with those options:
using (var conv = new Converter(documentPath, () => loadOptions))
{
var options = new PdfConvertOptions()
{
PageWidth = 750,
PageHeight = 1061
};
conv.Convert("output.pdf", options);
}
Here is some sample MSG and the output as PDF (with and without custom size):
Email to PDF conversion empty result.zip (885.6 KB)
Can you please take a look at the issue?