Hi, thanks to @Adrian_Celis , I was able to get a table inserted into my email.
Now
If I would like to add at the end of my email a picture, another line of text and also send the email with "Bcc". How can I do this?
The picture is added to my powerapp as media.
I have been trying this :
<!DOCTYPE html>
<html>
<body>
<h2>HTML Image</h2>
<img src="pic_trulli.jpg" alt="Trulli" width="500" height="333">
</body>
</html>
But no result.
Thanks in advance.
*************
PS/
The original table looks like this:
"<h3>Customer : " & varYourValueHere & "</h3>" &
"<h3> Address : " & varYourValueHere & "</h3>" &
"<h3>Contact : " & varYourValueHere & "</h3>" &
"<h3>Title : " & varYourValueHere & "</h3>" &
"<strong> Details: </strong>" & "<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" & "<tr style='background-color:#efefef'>
<th> H1 </th> <th> H2 </th> <th> H3 </th> <th> H4 </th> <th> H5 </th> <th> H6 </th> <th> H7 </th> <th> H8 </th>
</tr>
<tr style='text-align:center'>" & Concat(
Cart,
"<td>" & H1_Value & " </td>
<td>" & H2_Value & " </td>
<td>" & Text(H3_Value,"$ #,##0.00") & " </td>
<td>" & H4_Value & " </td>
<td>" & H5_Value & " </td>
<td>" & H6_Value & " </td>
<td>" & H7_Value & " </td>
<td>" & H8_Value & " </td>",
"</tr><tr>"
) & "</table>" & "<strong> Description: </strong>" & "<table width='100%' border='1' cellpadding='5' style='border:1px solid black; border-collapse:collapse'>" & "<tr style='background-color:#efefef'>
<th> T1 </th> <th> T2 </th> <th> T3 </th>
</tr>
<tr>" & Concat(
Cart,
"<td style='vertical-align:top'>" & HtmlTextT1.HtmlText & " </td>
<td style='vertical-align:top'>" & HtmlTextT2.HtmlText & " </td>
<td style='vertical-align:top'>" & HtmlTextT3.HtmlText & " </td>",
"</tr>"
) & "
<tr style='text-align:center; font-weight:bold'>
<td>" & Text(varYourValueHere,"$ #,##0.00") & " </td>
<td>" & Text(varYourValueHere,"$ #,##0.00") &" </td>
<td>" & Text(varYourValueHere,"$ #,##0.00") & " </td>
</tr>
</table>"