Hello.
I am trying to send HTML newsletters and it works fine in most email clients except Lotus Notes 8.
Problem:
Table size get converted to 100% width even though set to 640. I have tried to encapsulated everything into one table. Tried the following:
<table width=640>
<table width="640">
<table cellpadding=5 width=640>
<table cellpadding="5" width="640">
Apparently Lotus Notes render it like this:
<table width=3D100%>
Of course the table has be formatted correctly like so:
<table>
<tr>
<td>
Foobar
</td>
</tr>
</table>