Open
Description
Currently, while parsing an email (.msg), the Email Analyser parses the body is a simple manner. So all the HTML formatting in the email is lost
| Company | Country |
|---|---|
| GOOG | US |
| ARM | UK |
Currently the output comes as
Company \r\n\r\Country \r\n\r\nGOOG\r\n\r\nUS \r\n\r\ARM \r\n\r\nUK
Hence, cannot parse which one is row or column (nor table formatting like colors)
Expected as below
<table>
<tr>
<th>Company</th>
<th>Country</th>
</tr>
<tr>
<td>GOOG</td>
<td>US</td>
</tr>
<tr>
<td>ARM</td>
<td>UK</td>
</tr>
</table>