Thanks in advance to anyone who can provide insight! 🙂
Building a powerapp that walks a user through a series of screens to collect responses. Those responses then get compiled into an HTML input box for the purpose of then using the HTML input box as the body of an email sent via Office365.SendEmail.
The problem I am trying to solve is this:
I need to add a logo image inline within the HTML so that the image displays inline in the sent email. Within the company O365 / exchange environment a simple <img src.... tag does not display the image itself in the email. Regardless of the URL being internally / internal publicly accessible or externally hosted.
Details:
Final button function is:
Office365.SendEmail(Office365Users.MyProfile().Mail & ";" , var_EmailSubject,(HtmlText_EmailBody.HtmlText),{Importance: Normal, Cc: var_EmailCC1 & var_EmailCC2,IsHtml: true})
Example of body content:
<table>
<tr>
<th><!-- logo image --></tr>
<th>text</td>
</tr>
<tr>
<td>text</td>
<td>gathered text</td>
</tr>
</table>