Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/medicine/public_html/wp-content/plugins/newsletter/emails/blocks/html/ |
Upload File : |
<?php /* * Name: Html * Section: content * Description: Free HTML block * */ /* @var $options array */ /* @var $wpdb wpdb */ $defaults = array( 'html'=>'This is a piece of nice html code. You can use any tag, but be aware that email readers do not render everything.', 'block_padding_left' => 15, 'block_padding_right' => 15, 'block_padding_top' => 20, 'block_padding_bottom' => 20, 'block_background' => '', 'font_family' => '', 'font_size' => '', 'font_color' => '', 'font_weight' => '', ); $options = array_merge($defaults, $options); $title_style = TNP_Composer::get_text_style($options, '', $composer); ?> <style> .html-td { <?php $title_style->echo_css()?> padding: 0; line-height: normal !important; letter-spacing: normal; } </style> <table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation"> <tr> <td valign="top" align="center" inline-class="html-td" class="html-td-global"> <?php echo $options['html'] ?> </td> </tr> </table>