Hi Team
I have a data in excel sheet in a different colour format , I want sheet as output in mail body with same colour format How i can get this?
1 Like
If you are trying to paste the excel sheet data as image in the email body then you can do it. Let us know how you are trying to put the excel in the mailbody.
Hello @Kuldeep_Pandey
- Load the Excel file using Microsoft.Office.Interop.Excel.
- Convert the Excel data to an HTML table with inline CSS for formatting.
- Set the HTML table as the email body.
- Send the email using “Send SMTP Mail Message” with the IsBodyHtml property set to True.
Thanks & Cheers!!!
Can you explain point no 2
1 Like
- Copy Excel data.
- Create an HTML table structure with
<table>
,<tr>
,<td>
, and<th>
tags. - Paste Excel data into the HTML table.
- Apply inline CSS styles (e.g.,
style="property: value;"
) for formatting. - Save HTML as a file or store it as a string.
- Embed HTML in the email using “Send SMTP Mail Message” with
IsBodyHtml
set toTrue
. - Send the email.
I am not getting colours only getting sheet
Can you send xml with colours files in input
- Take a screenshot of the Excel sheet.
- Save the screenshot as an image.
- Compose an HTML email with the
<img>
tag to embed the image. - Send the email using UiPath’s “Send SMTP Mail Message” with
IsBodyHtml
set toTrue
. - Test the email in different clients for image display.