Hi Community,
I have a flow where I grab data from M. Forms and generate a PDF with the data loaded into a table, using the following JSON.
<!DOCTYPE html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>Tabla</title><meta name="author" content="xxx"/></head><body><style>Table {font-family: Arial, Helvetica, sans-serif; background-color: #EEEEEE; border-collapse: collapse; width: 100%;} Table td, Table th {border: 1px solid #ddd; padding: 3px 3px;} Table th {font-size: 15px; font-weight: bold; padding-top: 12px; padding-bottom: 12px; text-align: left; background-color: #1C6EA4; color: white;
}
</style><h1><a name="bookmark0">@{triggerOutputs()?['body/Registro']}</a></h1><p>Fecha: @{triggerOutputs()?['body/Fecha']}</p><p></p>
<table border="1" cellspacing="0">
<tr>
<td>Especie:</td><td>@{triggerOutputs()?['body/ProgramayEspecie']}</td>
</tr>
<tr>
<td>Number:</td><td>@{triggerOutputs()?['body/Title']}</td>
</tr>
<td>Nombre y CI Asistente 1:</td><td> @{triggerOutputs()?['body/NombreyRUTAsistente4']}</td>
</tr><tr>
<td>Nombre y CI Asistente 2:</td><td> @{triggerOutputs()?['body/NombreyRUTAsistente5']}</td>
</tr>
</table>
</body></html>
With this, a pdf like this is generated.

Would it be possible with the same JSON to add a static image in the upper right corner?.
Regards,
Francisco