hello Support!
is it possible to embbed a Picture from Peninput into HTML text control in PowerApps?
The idea is to send a Mail with signature from the pen input by html mail via Office365.SendEmail
the control pen input delivers only a Picture format like appres://blobmanager/xxxxxxxxx ?
how can I get it like base64 format?
thanks for help!
Solved! Go to Solution.
Hi @jeanshak ,
Do you want to send a picture from peninput control to outlook email via HTML format?
Try to use JSON function to convert the peninput picture to JSON format( including Binary Data), and add the json to the HTML statement, then use Office365.SendEmail to send the picture to email.
Please enter the following formulas to Button' Onselect, and check if it meets your need.
Set(VarHtmlImg, "<!DOCTYPE html> <html> <head> <title> Page Title </title> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph</p> <img src=" & JSON( PenInput1.Image,JSONFormat.IncludeBinaryData ) &"> </body> </html>"); Office365Outlook.SendEmailV2("***@***.com","Test Pen input",VarHtmlImg)
Hi @jeanshak ,
Do you want to send a picture from peninput control to outlook email via HTML format?
Try to use JSON function to convert the peninput picture to JSON format( including Binary Data), and add the json to the HTML statement, then use Office365.SendEmail to send the picture to email.
Please enter the following formulas to Button' Onselect, and check if it meets your need.
Set(VarHtmlImg, "<!DOCTYPE html> <html> <head> <title> Page Title </title> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph</p> <img src=" & JSON( PenInput1.Image,JSONFormat.IncludeBinaryData ) &"> </body> </html>"); Office365Outlook.SendEmailV2("***@***.com","Test Pen input",VarHtmlImg)
Thanks; it works !
I am trying to use this formula but a lot of the code is between speechmarks - so is coming out of my e-mail as text - and therefore not doing anything - is this correct?
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
198 | |
178 | |
64 | |
34 | |
32 |
User | Count |
---|---|
340 | |
273 | |
116 | |
73 | |
57 |