Created
November 24, 2016 02:14
-
-
Save fotoflo/b1434b51a38a38647a345dbafd624443 to your computer and use it in GitHub Desktop.
Create a centered List of images in a table for MailChimp Emails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="mcnTextContent"> | |
<table border="0" cellpadding="20" cellspacing="0" width="600" id="emailContainer"> | |
<tr> | |
<td align="center" valign="top"> | |
{{#if images}} | |
{{#each images}} | |
<img style="max-width: 360px; margin: 0 auto;" src="{{this}}"/> | |
<br/> | |
{{/each}} | |
{{/if}} | |
<br/> | |
</td> | |
</tr> | |
</table> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This corresponds to the following data structure to be sent to Mandrill: