I read a post that was 4 years old stating it's not possible to pass HTML to an email body.
I would like to know if this is still true?
My current JavaScript is:
TableF = '<table style="font-size: 1.0em; border-collapse: collapse;">';
TableF += '<tr>';
TableF += '<td>IP Addresses</td>';
TableF += '<td>Hop Number</td>';
TableF += '<td>Average MS</td>';
TableF += '</tr>';
TableF += '<tr>';
for(var i = 0; i < iparray.length; i++){
TableF += '<td>'+ iparray[i]+'</td><td>' + hopnum[i]+'</td><td>' + msarray[i]+'</td>';
}
TableF += '</tr></table>';
}
And suffice to say this doesn't convert to a table when a mailto
link is used, it simply writes the HTML as plain text.