Skip to content

Email Analyzer: How to get msg.HTMLbody rather than msg.body? #232

Open
@getkub

Description

@getkub

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>

Metadata

Metadata

Assignees

No one assigned

    Labels

    EmailbugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions