Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Jazz_shomp
Contributor
Contributor

html table in mail body

Hello All,

Please reply asap.

I wanted to implement two html table side by side in mail body through talend.

After that I want to write some paragraph.

But I am not getting the desired result. instead i am getting this:

0693p00000C7IMJAA3.png

Below is the code:

<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: left" >

<tr>

<td><b><font color="red">Table 1</b></td>

</tr>

<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: right" >

<tr>

<td ><b><font color="orange">Table 2</b></td>

</tr>

<p>End of the statement</p>

Thanks

Labels (3)
4 Replies
Prakhar1
Creator III
Creator III

Its a problem with your html code, try to fix it first.

Jazz_shomp
Contributor
Contributor
Author

Thanks for the reply. I have made some changes to the above code, but still not getting the output.:

 

<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: left" >

<tr>

  <td ><b> <font color="red">Table 1</b></td>

  </tr>

  </table>

 

<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: right" >

<tr>

  <td ><b> <font color="orange">Table 2</b></td>

</tr>

</table>

<p>End of the statement</p>

 

output:0693p00000C7IUmAAN.png 

 

 

Jazz_shomp
Contributor
Contributor
Author

If anyone know how to resolve this bug, please answer asap.

 

 

Prakhar1
Creator III
Creator III

<!DOCTYPE html>

<html>

<head>

<title>Page Title</title>

</head>

<body>

<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: left" >

 

<tr>

 

 <td ><b> <font color="red">Table 1</b></td>

 

 </tr>

 

 </table>

 

 

 

<table border="3" BGCOLOR="white" align='left' cellpadding="8" style ="float: left" >

 

<tr>

 

 <td ><b> <font color="orange">Table 2</b></td>

 

</tr>

 

</table>

<br>

<br>

<p>End of the statement</p>

 

</body>

</html>

 

try with this code