Hello,
In my flow, I am taking various outputs from a PowerApp and creating a HTML document that is then converted to a PDF file using the Encodian HTML to PDF action.
Is there any native functionality I could utilise so I don't need to use 3rd party premium connections?
This is what is included in the HTML Data field:
concat('<!DOCTYPE html>
<html>
<body>
<table style="width: 100%;">
<tr>
<td>
', triggerBody()['text'], '
</td>
</tr>
<tr>
<td>
<img src="', outputs('Compose_-_Photo_to_base64'), '" />
</td>
</tr>
<tr>
<td>
', triggerBody()['text_3'], '
</td>
</tr>
<tr>
<td>
', outputs('Compose'), '
</td>
</tr>
<tr>
<td>
', triggerBody()['text_4'], '
</td>
</tr>
</table>
</body>
</html>')