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: 
m_alsoby
Contributor III
Contributor III

Embed report into email body

Gents,

Greetings,

I heard some rumors about impossibility to embed report in NPrinting 17 is that correct ?!

If we can embed the report kindly share your knowledge about how to add it, because  i couldn't

Best Regards..

    

1 Solution

Accepted Solutions
Giuseppe_Panella
Employee
Employee

Hi Mohammed,

The feature that allows you to embed the HTML reports in email body has been release in Qlik NPrinting November 2017 release.

You can take a look at this video to understand how this feature works.

View solution in original post

6 Replies
Daniel_Jenkins
Specialist III
Specialist III

Hi Mohammed,

UPDATE: This feature has been added in the November 2017 release

That's right. With NPrinting 16 you could embed HTML reports into the body of an e-mail message. NPrinting 17.x does not yet have that feature. Take a look at the table at the bottom of this page. I believe this is considered 'high priority' internally and will be available in due course but I do not know exactly when.

HTH - Daniel.

remi_roland
Partner - Contributor III
Partner - Contributor III

Hi,

This function is now available in Nprinting 17!

However if you used to apply CSS style to your html style tag

<style type = "text / css">. cel0 {fcolor: # ec008c;} </ style>

and directly use the propertie style in your html object.

<td style = "fcolor: # ec008c;">

for an unknow reason that doesn't work using style ..

Giuseppe_Panella
Employee
Employee

Hi Mohammed,

The feature that allows you to embed the HTML reports in email body has been release in Qlik NPrinting November 2017 release.

You can take a look at this video to understand how this feature works.

remi_roland
Partner - Contributor III
Partner - Contributor III

Hi,

I found a workaround for css style.

Style Tag must be in body section. Nprinting 17 only send HTML code in body section and doesn't send the <header> tag before that.

nesawant
Contributor II
Contributor II

Hi Remi,

Can you share a sample example for this?

I am using CSS style in my html report however when I embed this html report in email body, the formatting doesn't work.

Best Regards,

Neha

Anonymous
Not applicable

I guess He means body of mail on NPrinting, not body of html report.

<html>
	<head>
		<style>
			.st001{
			font-size: 26px;
			text-align: center;
			font-weight: bold;
			color: #245C86;
			}
		</style>
	</head>
</html>

<p>%%Embed_test_HTML_Normal_a54ec9f5-f58f-5555-98e2-ae14e649f075%%</p><p><br></p>

And my report:

<html>

	<body>

	<table style="font-family:Arial" border='0' cellpadding='5' cellspacing='0' width='1000'>     

	<tr style="text-align: center;">
		<td class="st001" colspan=2> TEST 01 </td>         
	</tr>
	<tr style="text-align: center;">
		<td style="font-size: 26px; text-align: center; font-weight: bold; color: red;" colspan=2> TEST 02 </td>         
	</tr>
	
	</table>
	</body>
	
</html>