Hi,
I have enabled the experimental PDF function and linked the function to an email icon and set the following code in the OnSelect of the icon:
Office365Outlook.SendEmailV2(
User().Email, // selects the current user logged in
"This is a test subject", // populates the subject of the email
"Please find test email from PowerApps", // populates the body of the email
{
Attachments: Table(
{
Name: "canvasAppView.pdf", // defines the name of the PDF file
ContentBytes: PDF(summary) // captures the current screen
}
)
}
)
The email was sent to my office365 account with the set parameters from the code.
However the pdf is semi-blank. Meaning it is only showing the background of the application and partially visible text.
What I expected to see was the below. "some text I obfuscated"

What I am getting is the below:

The elements from my canvas app are not showing, most of the text and pictures are in containers.
I am not sure why the view is only showing the background.
Thank you