Auto-translated
Let's examine your table code:
BORDER="3" - border with a thickness of 3 pixels
BORDERCOLOR="lightblue" - border color
CELLSPACING="0" - external cell spacing
CELLPADDING="5" - internal cell spacing
ALIGN=CENTER - center alignment
It is the last one that creates the offset, or rather, centers the table in the browser. To make it align with the beginning of the message, you only need to change
ALIGN=CENTER to ALIGN=LEFT
Or remove this property from the code altogether; by default, the table, like other objects, is aligned to the left side. =)
Let's break down the properties:BORDER="3" - border with a thickness of 3 pixels
BORDERCOLOR="lightblue" - border color
CELLSPACING="0" - external cell spacing
CELLPADDING="5" - internal cell spacing
ALIGN=CENTER - center alignment
It is the last one that creates the offset, or rather, centers the table in the browser. To make it align with the beginning of the message, you only need to change
ALIGN=CENTER to ALIGN=LEFT
Or remove this property from the code altogether; by default, the table, like other objects, is aligned to the left side. =)