So it is the first time fo me to work with logic app or any technology that have the same idea. I need to use email trigger when eamil is received then extract data to send it to jira ticket as table.
example of the html table from email body:
<table>
<tr><td> Number: </td> <td> 12 </td> </tr>
<tr><td> Priority: </td> <td> High </td> </tr>
<tr><td> Status: </td> <td> Open </td> </tr>
<tr><td> Time: </td> <td> 14:26:39 </td> </tr>
</table>
please consider that I am new to this and I am trying to use array filters, select, compose but still I can't reach anywhere.
I found some solutions but it works with them because the table titles are on the top while form me it is on the side (inline with the values) example:
There table:
Number | Priority | Status |
---|---|---|
12 | High | Open |
Note: I can't change the table format!
I tried to replace the </tr>
with |
and </td>
with ^ to split them but I got stuck there.