So I created a registration template email and have gone to test it.
When the email sends, the code changes and line breaks are added after every line.
An example bit of my code is as followed:
"
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td align="left" style="font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif; color: #000000; font-size: 14px;line-height:22px;"><strong>From the account section you can:</strong>
<ul>
<li>Update your personal info.</li>
<li>Change account password.</li>
<li>Add or edit stored addresses.</li>
<li>Store multiple payment methods for a quicker checkout.</li>
<li>Track your order history and the progress of any outstanding orders.</li>
</ul>
</td>
</tr>
</tbody>
</table>"
While the edited code looks like this:
"
<table border=3D"0" cellpadding=3D"0" cellspacing=3D"0" width=3D"100%">
<br>
<tbody>
<br>
<tr>
<br>
<td align=3D"left" style=3D"font-family: 'Gill Sans', 'Gill Sans MT', Calibri, =
sans-serif; color: #000000; font-size: 14px;line-height:22px;">
<strong>From the account section you can:</strong><br>
<ul>
<br>
<li>Update your personal info.<br></li>
<li>Change account password.<br></li>
<li>Add or edit stored addresses.<br></li>
<li>Store multiple payment methods for a quicker checkout.<br></li>
<li>Track your order history and the progress of any outstanding order=
s.<br>
</li>
</ul>
<br>
</td>
<br>
</tr>
<br>
</tbody>
<br>
</table>"
Any help would be greatly appreciated.