Try to covert the HTML String to document through JSoup and failing with invalid XML characters.
This error possibly can happen when user copy email address from outlook.
It looks like, JSoup possibly could fail if a text with special characters preceded with >. Example, <test@>,<test!>.
<html>
<table>
<tr>
<td>
<test@test.com>
</td>
</tr>
</table>
</html>
Any idea, can make this works?