Skip to content
Snippets Groups Projects

Email Template based on WDN Templates 4.0

Merged Kevin Abel requested to merge email-4 into master
+ 1117
177
Compare changes
  • Side-by-side
  • Inline
Files
+ 32
0
 
<?php /* @var $context UNL_WDN_Emailer_Template_Band */ ?>
 
<?php $color = isset($context->foreground) ? $context->foreground : '#444431'; ?>
 
<?php $bgcolor = isset($context->background) ? $context->background : '#F8F5EC'; ?>
 
<?php $hcolor = isset($context->headlineColor) ? $context->headlineColor : $color; ?>
 
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="line-height: normal;">
 
<tr>
 
<td bgcolor="<?php echo $bgcolor ?>" style="padding: 50px 15px 50px 15px; color: <?php echo $color ?>;" class="section-padding">
 
<table align="center" border="0" cellpadding="0" cellspacing="0" width="620" class="responsive-table">
 
<tr>
 
<td valign="middle">
 
<table border="0" cellspacing="0" cellpadding="0" width="100%">
 
<tr>
 
<td align="left" valign="top">
 
<table width="100%" border="0" cellspacing="0" cellpadding="0">
 
<?php if (isset($context->headline)): ?>
 
<tr>
 
<td align="left" style="font-size: 25px; font-family: Helvetica, Arial, sans-serif; color: <?php echo $hcolor ?>; padding-bottom:20px;">
 
<?php echo $context->headline ?>
 
</td>
 
</tr>
 
<?php endif; ?>
 
<?php echo $context->getChildHtml() ?>
 
</table>
 
</td>
 
</tr>
 
</table>
 
</td>
 
</tr>
 
</table>
 
</td>
 
</tr>
 
</table>
Loading