I have a flow working from a sharepoint list where i select an item in sharepoint, run the flow, then converts to html/pdf. What i need to do is also bring an image source in from sharepoint. I currently have it going to sharepoint as a base64 and was trying to figure out how to get it into the html to display as image. (see attachments)
This is what i have in the html currently Is there a way of putting a <img src="['Signature1']"> as the ['Signature1'] gets replaced with base64 from sharepoint?
<tr><td>Company Rep Signature</td><td>',variables('objectList')?['Signature1'],'</td></tr>
</body></html>')
<tr><td>Company Rep Signature</td><td>',variables('objectList')?['Signature1'],'</td></tr>
Any help would be much appreciated
Kind regards,
Matt383
Worked it out
<tr><td>Company Rep Signature</td><td>img src="',variables('objectList')?['Signature1'],'"</td></tr>
Cheers anyway