At my workplace, I use an HTML file as my email signature footer with IBM Notes. Everything looks great when I create a new email - the logo is positioned correctly, text is styled how I want it, and the overall layout is fine.
However, things start to look messy when someone replies to one of my emails. The borders of the cells become black lines which ruin the appearance of the footer.
I really don't like those ugly black lines appearing everywhere.
Whenever I reply to emails, I keep getting a strange dialog box popping up. It mentions something about "Multilingual MIME Warning" and character sets, but I'm not sure if this has anything to do with the black lines in the footer.
Here's the HTML code that I've been using. Any suggestions or help would be greatly appreciated!
<html>
<head>
<style>
h1 {color:red;}
p {color:black;}
</style>
</head>
<body>
<table border=0><font face="Arial">
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td colspan=3 align="center">
<font face="Arial" size="3">
<strong>
Comet Bill
</strong>
</font><br />
<strong>
<font face="Arial" size="3">
Bit herder
</font></strong>
</td>
<td align="center">
<img src='XYZourstrapline.png' align="center">
</td>
<td></td>
</tr>
<tr></tr>
<tr>
<td align="right" width="10%"><img src='XYZ Corp logo.png'>
</td>
<td colspan=3>
<font face="arial" size="3">
XYZ Corporation Ltd.
</font><br />
<font face="Arial" size="2">Hard Way, Impossible Road,
<br />GitVille, XY3 1XY</font>
</td>
</tr>
</table>
<table border=0>
<tr>
<td colspan=1 align="right">
<font face="Arial" size="1">Switchboard:</font>
</td>
<td colspan=3>
<font face="Arial" size="2">+44 (0)1234 567890</font>
</td>
</tr>
<tr>
<td colspan=1 align="right">
<font face="Arial" size="1">Direct:</font>
</td>
<td colspan=3>
<font face="Arial" size="2">+44 (0)1234 987654</font>
</td>
</tr>
<tr>
<td colspan=1 align="right">
<font face="Arial" size="1">Email:
</font>
</td>
<td colspan=3>
<font face="Arial" size="2"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="f0939f9d9584de92999c9cb09d89959d91999c919494822859b7">[email protected]</a></font>
</td>
</tr>
</table>
</body>
</html>