Search code examples
htmlcodeigniterhtml-email

General Email Template


Does anyone know where I could or how to develop an email template?

I am looking to have the following sections:

header body footer

I have tried googling but I have seen some in tables and some in html. Do I just create it using inline div & css?


Solution

  • I strongly disagree with the answer by @Dzek Trek. When creating html emails i never use divs, and the only css i use is inline css. I say this with 6 months experience building emails.

    An example of my overall email layout would be:

    <table cellpadding="0" cellspacing="0" width="100%">
      <tr>
        <td>&nbsp;</td>
        <td width="600">
          YOUR CONTENT. Start with a table
        </td>
        <td>&nbsp;</td>
    </table>
    

    This will center the email inside the email client and will also correct any outer spacing bugs.