Skip to main content
Announcements
Defect acknowledgement with Nprinting Engine May 2022 SR2, please READ HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
tripatiqv
Partner - Contributor III
Partner - Contributor III

table border of html report is not coming in nprinting report in outlook email but coming in gmail

Hi,

I am using below  html code in nprinting  html report to send qlikview pivot table as email body .

<html>
<body>

<img src="%%CH03%%" border="1" alt="CH03" style="border: 1px solid black"/>
<br>

<img src="%%TX06%%" border="1" alt="TX06"/>
<br>


<img src="%%TX05%%" border="1" alt="TX05"/>
<br>

<img src="%%CH02_1%%" border="1" alt="CH02_1"/>

</body>

</html>

the pivot coming correctly body part in the gmail but border is not coming and text box size is increasing in outlook.

 

Please check.

 

qlik nrpinting discussion

 

Labels (1)
1 Reply
Stoyan_Terziev
Partner - Creator III
Partner - Creator III

Hi Tripati,

 

I see you’ve been hanging for hours without reply so I will give it my best. Please note I am no NPrinting expert.

There are a lot of undefined widths I see in your script, you may want to get those defined. 

 

Let’s see if this small edit will do the trick:

<body>

<div style=“width: 95%; margin: auto;”>

...

<\div>

this will add a container for the whole report which will be aligned horizontally and should prevent the edges being cut from various clients like outlook.

Please let me know if this works.

 

Kind regards,

S.T.