Hello,
I have this formula below which creates PDF file from my gallery3 and send it by email.
Office365Outlook.SendEmailV2(
"test@mail.com";
"objtext" ;" bodytext ";
{
Attachments: Table(
{
Name: "test.pdf";
ContentBytes: PDF(Gallery3;{Orientation:"portrait";ExpandContainers: true; Margin:"5mm"; Size:PaperSize.A4})
}
)
}
)
The issue i have is when the PDF file is created, the images of my gallery are not resized in A4 format.
Could you help me please?