Ho to read inbound email with multiple records in html format
Hi,
We sending outbound email with multiple records (eg: having column headers as Opty Id and Status) in tabular format with custom html. Now user will edit the status in the same table while replying to the email
Now we need to read that email and update the opportunities with the status received in the email. We are facing issues in reading the inbound email response where in the html structure is something like below:
<tr>
<td Opty id1>1234</td>
<td Status>New</td>
</tr>
<tr>
<td Opty id1>5678</td>
<td Status>Pending</td>
</tr>
Could you please help me out how to read the html from the response email and loop through the table rows.