Current File : /home/pacjaorg/public_html/2024/wp-content/plugins/newsletter/emails/blocks/text/block.php |
<?php
/*
* Name: Text
* Section: content
* Description: Free text block
*
*/
/* @var $options array */
$default_options = array(
'html'=>'<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vitae sodales nulla, nec blandit velit.</p>',
'font_family'=>'',
'font_size'=>'',
'font_color'=>'',
'block_padding_left'=>15,
'block_padding_right'=>15,
'block_padding_top' => 20,
'block_padding_bottom' => 20,
'block_background'=>''
);
$options = array_merge($default_options, $options);
$text_style = TNP_Composer::get_style($options, '', $composer, 'text');
?>
<style>
.text {
mso-line-height-rule: exactly;
<?php echo $text_style->echo_css() ?>
line-height: 1.5;
}
</style>
<table width="100%" style="width: 100%!important" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="100%" valign="top" align="left" class="text" inline-class="text">
<?php echo $options['html'] ?>
</td>
</tr>
</table>