You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of our customers get quite a lot of plaintext emails with links containing a ? like this: https://xxxxx.sophos.com?xxxxxxxxxxxx
Unfortunately the link doesn't get properly recognized, as everything after the ? won't be within the <a href>.
The resulting converted HTML looks like this:
<html>
<head>
<META content="text/html; charset=UTF-8" http-equiv=Content-Type></head>
<body>This is a test for html links
<a href="https://xxxxx.sophos.com">https://xxxxx.sophos.com</a>?xxxxxxxxxxxx<br/>
</body>
</html>
instead of this:
<html>
<head>
<META content="text/html; charset=UTF-8" http-equiv=Content-Type></head>
<body>This is a test for html links
<a href="https://xxxxx.sophos.com?xxxxxxxxxxxx">https://xxxxx.sophos.com?xxxxxxxxxxxx</a><br/>
</body>
</html>
I've attached a Testprogram with which you can reproduce this behavior. It converts a plaintext eml using HTMLPreviewVisitor.
Tested in .NET 4.8 with Mimekit 3.3.0 and 3.5.0
The text was updated successfully, but these errors were encountered:
Some of our customers get quite a lot of plaintext emails with links containing a ? like this: https://xxxxx.sophos.com?xxxxxxxxxxxx
Unfortunately the link doesn't get properly recognized, as everything after the ? won't be within the
<a href>
.The resulting converted HTML looks like this:
instead of this:
I've attached a Testprogram with which you can reproduce this behavior. It converts a plaintext eml using HTMLPreviewVisitor.
Tested in .NET 4.8 with Mimekit 3.3.0 and 3.5.0
The text was updated successfully, but these errors were encountered: