Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
S_N_Banerjee
Contributor II
Contributor II

Qlik Alerting Custom Notification

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

Qlik Alerting 

Qlik Sense Business 

Labels (1)
10 Replies
Alan_Slaughter
Support
Support

Hi Soumendra Nath Banerjee, can you share the code that you are using to implement your template?

S_N_Banerjee
Contributor II
Contributor II
Author

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>

--------------------

Alan_Slaughter
Support
Support

Hi Soumendra Nath Banerjee, can you share the code that you are using to implement your template? Our code is working. 

S_N_Banerjee
Contributor II
Contributor II
Author

<!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>

S_N_Banerjee
Contributor II
Contributor II
Author

updated.

Please check the format, and let me know.

Alan_Slaughter
Support
Support

Hi 

just try this:

<img src="C:\Images\Logo.png">

S_N_Banerjee
Contributor II
Contributor II
Author

Hi Alan,

Still the same. Not working.

 

Alan_Slaughter
Support
Support

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>

S_N_Banerjee
Contributor II
Contributor II
Author

Still the same.

 

Fetching a distorted image in Mail Alert.