I have a function in the Power App I'm building that takes the contents of an HTML Text box and launches a Power Automate flow that creates an HTML file out of it, saves that to the user's OneDrive in a specific folder, and then converts that HTML to a PDF, saving it in that same folder.
1) Right now, when you click the button that launches this, it just does it, and gives no indication as to whether or not it was successful. Is there a way that I can test to see if that file was actually created and if it was, notify the user?
2) Also, the file name is based on one of the text fields in my application. Is there a way to make sure that the field in question doesn't contain any characters that would be "illegal" in a file name?
3) The HTML file has an image at the top of it which renders correctly. When the file gets converted to PDF, everything looks fine except for the image - it's missing and the PDF just shows the alternate name for the image instead. HTML really isn't my forte - is there any special formatting or something that would be needed to properly convert the file to include the image?