Send table in outlook using html

Hi Team,

I need to send 2 tables in excel via outlook in mail bodyticket.xlsx (17.0 KB) . Excel, I have attached in the sheet.
Cell position are remain same which is there in attached excel, just values getting change in all cell.

Regards,
Sushant

make sure “IsBodyHtml” must be enabled to display the tabular data.

@sunilraju
But I am not that much good in HTML. So can you help me with the HTML code

@sshitol,
we have an option called “ISBodyHtml” on the right side properties panel. just enable it.
for ex: take SendOutlookMailmessage activity see the right side properties panel and Enable IsBodyHtml set true. by default unchecked.

@sunilraju,
That i know, I am asking you to help me in HTML code

Hii@sshitol
please go through below thread…may be it will help to you…

Use Append Range
also check row number if it same increment it.

Here is the layout of the HTML that you can use. Just replace the item values with those from your chart. You can save this in a string variable all in one line and it will do the same thing.

<html>
	<body>
		<table border = 1>
	        <tr>
	             <th> header1</th>
	             <th> header2</th>
	             <th> header3</th>
	        </tr>
	        <tr>
	             <th> item1</th>
	             <th> item2</th>
	             <th> item3</th>
	        </tr>
	    </table>
	    <table border = 1>
	        <tr>
	             <th> header1</th>
	             <th> header2</th>
	             <th> header3</th>
	             <th> header4</th>
	             <th> header5</th>
	        </tr>
	        <tr>
	             <th> item1</th>
	             <th> item2</th>
	             <th> item3</th>
	             <th> item4</th>
                 <th> item5</th>
	        </tr>
	    </table>
	</body>
</html>

Once it it rendered it will look like this in the email that is sent.

header1 header2 header3
item1 item2 item3
header1 header2 header3 header4 header5
item1 item2 item3 item4 item5

In my client requirement is two tables side by side on outlook mail body
I am writing same above html code but it comes table1
Table2
So can you suggest me
@supermanPanch
@Palaniyappan
@balupad14

Hello. I made table following your code.
I want to change table border design, because table border = 1 is hard to recognize borders.
I want to normal solid black line.
How can I change it?
I changed number, but it didn’t work