Since the above mentioned Versions I wouldn't be able to create a PDF file including more then a single page (more then it is shown on the actual screen). It stops after one page even I am using the "ExpandContainers: true" function. I went back to V3.23055.18 but still the same problem - I am shure this worked fine before changing to the new Version:
Office365Outlook.SendEmailV2(
User().Email;
"Automization Requirements Overview";
"PDF from PowerApps";
{
Attachments: Table(
{
Name: "Automization_Requirements.pdf";
ContentBytes: PDF(Cont_Form3;
{
ExpandContainers: true;
Orientation: PaperOrientation.Portrait;
Size: PaperSize.A4;
Margin: "20p 20p 20p 20p"
}
)
}
)
}
);;