Question
Email table format
I have created some velocity script for an event program I am creating so that I can display the multiple sessions someone registers for in one autoresponder. It is working, although it is indenting when the values show in the email. Here is the script:
#if ($lead.rentalAMER12.contains("D1-AIML-01"))
<table>
<tr>
<td>#N/A</td>
</tr>
<tr>
<td>12:00-12:40pm - Room 100</td>
</tr>
<tr>
<td> </td>
</table>
<br>
#end
Here is the test email that has #N/A in place of the session title

Is there any easy way to get it to be left aligned?