I am trying to Generate PDF file from Power Apps screen, and I have achieved it using the below code:
there is shorter code to make the same using below:
With( {wPDF: PDF(SecreenName)}, Office365Outlook.SendEmailV2( "[email protected]", "Subject here", "Body here", { Attachments: { Name: "PDFFileName.pdf", ContentBytes: wPDF } } ) ) The issue with this code is that it is not supporting Arabic Text, is there a way or alternative to make it work for other Arabic?
