Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
We have requirements to add one logo image at the email body along with the content.
We have tried several code changes with the help of "Embedding web images into emails" as mentioned in Qlik help portal ""https://help.qlik.com/en-US/alerting/October2021/Content/QlikAlerting/custom-notifications.htm""
But we are unable to get the image in mail alert.
Kindly help us by providing any template for that or is there any different procedure for that.
Thanks,
Soumendra Nath Banerjee
Hi Soumendra Nath Banerjee, can you share the code that you are using to implement your template?
Hi Alan,
Here is the code format that we are trying with:
--------------------
<table width="100%"> <tr> <td align="center" style="padding:10px 25px;"> <div style="text-align:right"> <img src="https://qlik.imgix.net/us/-/media/images/qlik/global/qlik-logo-2x.png?h=94&w=308&la=en&hash=91B8028A8CF991CF3864E421063D49298BD58575" alt="Qlik Logo" height="64"> </div> </td> </tr> </table>
--------------------
Hi Soumendra Nath Banerjee, can you share the code that you are using to implement your template? Our code is working.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<table width="100%">
<tr>
<td align="center" style="padding:10px 25px;">
<div style="text-align:right">
<img src="C:\Images\Logo.png" alt="Qlik Logo" height="64">
</div>
</td>
</tr>
</table>
</body>
</html>
updated.
Please check the format, and let me know.
Hi Alan,
Still the same. Not working.
This is what I used and it worked:
<!DOCTYPE HTML >
<html lang="en">
<head> .... </head>
<body> .... </body>
</html>
<table width="100%">
<tr>
<td align="center" style="padding:10px 25px;">
<div style="text-align:right">
<img src="C:\Images\qlik-logo-2x.png">
</div>
</td>
</tr>
</table>
</body>
</html>
Still the same.
Fetching a distorted image in Mail Alert.