Advertisement
Guest User

newsletter theme

a guest
Apr 13th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 20.75 KB | None | 0 0
  1. <?php
  2. global $newsletter; // Newsletter object
  3. global $post; // Current post managed by WordPress
  4.  
  5. /*
  6.  * Some variabled are prepared by Newsletter Plus and are available inside the theme,
  7.  * for example the theme options used to build the email body as configured by blog
  8.  * owner.
  9.  *
  10.  * $theme_options - is an associative array with theme options: every option starts
  11.  * with "theme_" as required. See the theme-options.php file for details.
  12.  * Inside that array there are the autmated email options as well, if needed.
  13.  * A special value can be present in theme_options and is the "last_run" which indicates
  14.  * when th automated email has been composed last time. Is should be used to find if
  15.  * there are now posts or not.
  16.  *
  17.  * $is_test - if true it means we are composing an email for test purpose.
  18.  */
  19.  
  20.  
  21. // This array will be passed to WordPress to extract the posts
  22. $filters = array();
  23.  
  24. // Maximum number of post to retrieve
  25. $filters['showposts'] = (int) $theme_options['theme_max_posts'];
  26. if ($filters['showposts'] == 0)
  27.     $filters['showposts'] = 10;
  28.  
  29.  
  30. // Include only posts from specified categories. Do not filter per category is no
  31. // one category has been selected.
  32. if (is_array($theme_options['theme_categories'])) {
  33.     $filters['cat'] = implode(',', $theme_options['theme_categories']);
  34. }
  35.  
  36. // Retrieve the posts asking them to WordPress
  37.  
  38.  
  39.  
  40. $posts = get_posts(array('category' => 17,'posts_per_page' => 1));
  41. ?>
  42.  
  43. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  44. <html xmlns="http://www.w3.org/1999/xhtml">
  45.     <head>
  46.  
  47.         <!-- Define Charset -->
  48.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  49.         <!-- Responsive Meta Tag -->
  50.         <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
  51.         <!-- Facebook sharing information tags -->
  52.         <meta property="og:title" content="Newsletter |Almosementi|">
  53.         <title>Newsletter | Almosementi |</title>
  54.        
  55.     <link href='http://fonts.googleapis.com/css?family=Merriweather:400,700|Raleway:400,700' rel='stylesheet' type='text/css'>
  56.        
  57.     <style type="text/css" data-premailer="ignore">
  58.             /*-------------------------------------- Responsive 600px PC Attributes --------------------------------------*/
  59.            
  60.            
  61.             *{ margin:0; padding:0;}
  62.            
  63.             body{
  64.                
  65.                   width:100% !important;
  66.                   min-width: 100%;
  67.                   -webkit-text-size-adjust:100%;
  68.                   -ms-text-size-adjust:100%;
  69.                   margin:0;
  70.                   padding:0;
  71.                   background:#ebebeb;
  72.                   font-family: 'Raleway', sans-serif;
  73.            
  74.                 }
  75.                
  76.                 p{ font-family: 'Raleway', sans-serif;}
  77.                
  78.                 h1, h2, h3, h4, h5, h6 { word-break: normal; font-family: 'Merriweather', serif; }
  79.                
  80.                 h1 {font-size: 40px;}
  81.                 h2 {font-size: 36px;}
  82.                 h3 {font-size: 32px;}
  83.                 h4 {font-size: 28px;}
  84.                 h5 {font-size: 24px;}
  85.                 h6 {font-size: 20px; }
  86.                 h6.title { color:#1a161a; padding-bottom:20px; font-weight:600; font-family: 'Raleway', serif; font-size:32px; text-transform:uppercase; }
  87.                 h6.date {  font-size:16px; color:#00b4ff }
  88.                
  89.                 a{ color:#00b4ff; text-decoration:none; }
  90.                 a:hover{ color:#00b4ff; text-decoration: underline; }
  91.            
  92.            
  93.             @media only screen and (max-width: 900px) {
  94.             body {
  95.             width:auto!important;
  96.            
  97.             }
  98.             /* Responsive Wrappers  */
  99.             .BoxWrap {
  100.             width:600px !important;
  101.             }
  102.             .BookLeft {
  103.             width:300px !important;
  104.             }
  105.             .BookRight {
  106.             width:280px !important;
  107.             }
  108.             .Respo1Column {
  109.             width:560px !important;
  110.             }
  111.             .Respo2Column {
  112.             width:270px !important;
  113.             }
  114.             .Respo3Column {
  115.             width:560px !important;
  116.             }
  117.             /* Responsive Images  */
  118.             .RespoImage1Col {
  119.             width:600px !important;
  120.             height:auto !important;
  121.             }
  122.             .RespoImage1ColW Img {
  123.             width:600px !important;
  124.             height:auto !important;
  125.             }
  126.             .RespoImage2Col {
  127.             width:270px !important;
  128.             height:auto !important;
  129.             }
  130.             .RespoImage2ColW Img {
  131.             width:270px !important;
  132.             height:auto !important;
  133.             }
  134.             .RespoImage3Col {
  135.             width:560px !important;
  136.             height:auto !important;
  137.             }
  138.             .RespoImage3ColW Img {
  139.             width:560px !important;
  140.             height:auto !important;
  141.             }
  142.             /* Responsive Images with Padding */
  143.             .RespoImage1ColPadding {
  144.             width:560px !important;
  145.             height:auto !important;
  146.             }
  147.             .RespoImage1ColPaddingW Img {
  148.             width:560px !important;
  149.             height:auto !important;
  150.             }
  151.             /* Responsive Framed Images */
  152.             .RespoImage2ColFramed {
  153.             width:264px !important;
  154.             height:auto !important;
  155.             }
  156.             .RespoImage2ColFramedW Img {
  157.             width:264px !important;
  158.             height:auto !important;
  159.             }
  160.             .RespoImage3ColFramed {
  161.             width:554px !important;
  162.             height:auto !important;
  163.             }
  164.             .RespoImage3ColFramedW Img {
  165.             width:554px !important;
  166.             height:auto !important;
  167.             }
  168.             /* Show/Hide  */
  169.             .respo-margin {
  170.             width:20px !important;
  171.             }
  172.             .respo-hide-pc {
  173.             display:none !important;
  174.             }
  175.             .respo-show-pc {
  176.             display:block !important;
  177.             }      
  178.             /* General  */
  179.             .respo-text-left {
  180.             text-align:left !important;
  181.             }
  182.             .respo-center-pc {
  183.             text-align:center !important;
  184.             }
  185.             }
  186.            
  187.             /*-------------------------------------- Responsive 440px Tablet Attributes --------------------------------------*/
  188.             @media only screen and (max-width: 640px) {
  189.             body {
  190.             width:auto!important;
  191.             }
  192.             /* Responsive Wrappers  */
  193.             .BoxWrap {
  194.             width:440px !important;
  195.             }
  196.             .BookLeft {
  197.             width:440px !important;
  198.             }
  199.             .BookRight {
  200.             width:440px !important;
  201.             }
  202.             .Respo1Column {
  203.             width:420px !important;
  204.             }
  205.             .Respo2Column {
  206.             width:400px !important;
  207.             }
  208.             .Respo3Column {
  209.             width:400px !important;
  210.             }
  211.             .RespoTabletWidth {
  212.             width:400px !important;
  213.             }
  214.             .Respo2ColumnTablet {
  215.             width:400px !important;
  216.             }
  217.             /* Responsive Images  */
  218.             .RespoImage1Col {
  219.             width:440px !important;
  220.             height:auto !important;
  221.             }
  222.             .RespoImage1ColW Img {
  223.             width:440px !important;
  224.             height:auto !important;
  225.             }
  226.             .RespoImage2Col {
  227.             width:400px !important;
  228.             height:auto !important;
  229.             }
  230.             .RespoImage2ColW Img {
  231.             width:400px !important;
  232.             height:auto !important;
  233.             }
  234.             .RespoImage3Col {
  235.             width:400px !important;
  236.             height:auto !important;
  237.             }
  238.             .RespoImage3ColW Img {
  239.             width:400px !important;
  240.             height:auto !important;
  241.             }
  242.             .RespoImage3ColTablet {
  243.             width:400px !important;
  244.             height:auto !important;
  245.             }
  246.             .RespoImage3ColWTablet Img {
  247.             width:400px !important;
  248.             height:auto !important;
  249.             }
  250.             /* Responsive Images with Padding */
  251.             .RespoImage1ColPadding {
  252.             width:400px !important;
  253.             height:auto !important;
  254.             }
  255.             .RespoImage1ColPaddingW Img {
  256.             width:400px !important;
  257.             height:auto !important;
  258.             }
  259.             /* Responsive Framed Images */
  260.             .RespoImage2ColFramed {
  261.             width:394px !important;
  262.             height:auto !important;
  263.             }
  264.             .RespoImage2ColFramedW Img {
  265.             width:394px !important;
  266.             height:auto !important;
  267.             }
  268.             .RespoImage3ColFramed {
  269.             width:394px !important;
  270.             height:auto !important;
  271.             }
  272.             .RespoImage3ColFramedW Img {
  273.             width:394px !important;
  274.             height:auto !important;
  275.             }
  276.             /* Responsive Tablet and Mobile Only */
  277.             .RespoImage2ColTablet {
  278.             width:400px !important;
  279.             height:auto !important;
  280.             }
  281.             .RespoImage2ColTabletW Img {
  282.             width:400px !important;
  283.             height:auto !important;
  284.             }          
  285.             /* Show/Hide  */
  286.             .respo-hide-tablet {
  287.             display:none !important;
  288.             }
  289.             .respo-show-tablet {
  290.             display:block !important;
  291.             }
  292.             /* Responsive Text Align & Size */
  293.             .Text_H1 {
  294.             font-size: 36px!important;
  295.             line-height: 125%!important;
  296.             }
  297.             .Text_H2 {
  298.             font-size: 36px!important;
  299.             line-height: 140%!important;
  300.             }
  301.             .Text_H3 {
  302.             font-size: 14px!important;
  303.             line-height: 150%!important;
  304.             font-weight: normal!important;
  305.             }
  306.             .Text_H4 {
  307.             font-size: 15px!important;
  308.             line-height: 150%!important;
  309.             font-weight: normal!important;
  310.             }
  311.             .respo-center-tablet {
  312.             text-align:center !important;
  313.             }
  314.             .respo-spacer {
  315.             height:200px!important;        
  316.             }
  317.             }
  318.            
  319.             /*-------------------------------------- Responsive 280px Mobile Attributes --------------------------------------*/
  320.             @media only screen and (max-width: 480px) {
  321.             body {
  322.             width:auto!important;
  323.             }
  324.             /* Responsive Wrappers  */
  325.             .BoxWrap {
  326.             width:280px !important;
  327.             }
  328.             .BookLeft {
  329.             width:280px !important;
  330.             }
  331.             .BookRight {
  332.             width:280px !important;
  333.             }
  334.             .Respo1Column {
  335.             width:260px !important;
  336.             }
  337.             .Respo2Column {
  338.             width:240px !important;
  339.             }
  340.             .Respo3Column {
  341.             width:240px !important;
  342.             }
  343.             .RespoTabletWidth {
  344.             width:240px !important;
  345.             }
  346.             .Respo2ColumnTablet {
  347.             width:240px !important;
  348.             }
  349.             /* Responsive Images  */
  350.             .RespoImage1Col {
  351.             width:280px !important;
  352.             height:auto !important;
  353.             }
  354.             .RespoImage1ColW Img {
  355.             width:280px !important;
  356.             height:auto !important;
  357.             }
  358.             .RespoImage2Col {
  359.             width:240px !important;
  360.             height:auto !important;
  361.             }
  362.             .RespoImage2ColW Img {
  363.             width:240px !important;
  364.             height:auto !important;
  365.             }
  366.             .RespoImage3Col {
  367.             width:240px !important;
  368.             height:auto !important;
  369.             }
  370.             .RespoImage3ColW Img {
  371.             width:240px !important;
  372.             height:auto !important;
  373.             }
  374.             .RespoImage3ColTablet {
  375.             width:240px !important;
  376.             height:auto !important;
  377.             }
  378.             .RespoImage3ColWTablet Img {
  379.             width:240px !important;
  380.             height:auto !important;
  381.             }
  382.             /* Responsive Images with Padding */
  383.             .RespoImage1ColPadding {
  384.             width:240px !important;
  385.             height:auto !important;
  386.             }
  387.             .RespoImage1ColPaddingW Img {
  388.             width:240px !important;
  389.             height:auto !important;
  390.             }
  391.             /* Responsive Framed Images */
  392.             .RespoImage2ColFramed {
  393.             width:234px !important;
  394.             height:auto !important;
  395.             }
  396.             .RespoImage2ColFramedW Img {
  397.             width:234px !important;
  398.             height:auto !important;
  399.             }
  400.             .RespoImage3ColFramed {
  401.             width:234px !important;
  402.             height:auto !important;
  403.             }
  404.             .RespoImage3ColFramedW Img {
  405.             width:234px !important;
  406.             height:auto !important;
  407.             }
  408.             /* Responsive Tablet and Mobile Only */
  409.             .RespoImage2ColTablet {
  410.             width:240px !important;
  411.             height:auto !important;
  412.             }
  413.             .RespoImage2ColTabletW Img {
  414.             width:240px !important;
  415.             height:auto !important;
  416.             }
  417.             /* Show/Hide  */
  418.             .respo-hide-mobile {
  419.             display:none !important;
  420.             }
  421.             /* Responsive Text Align & Size */
  422.             .Text_H1 {
  423.             font-size: 24px!important;
  424.             line-height: 125%!important;
  425.             }
  426.             .Text_H2 {
  427.             font-size: 24px!important;
  428.             line-height: 140%!important;
  429.             }
  430.             .Text_H3 {
  431.             font-size: 18px!important;
  432.             line-height: 150%!important;
  433.             font-weight: normal!important;
  434.             }
  435.             .Text_H4 {
  436.             font-size: 11px!important;
  437.             line-height: 150%!important;
  438.             font-weight: normal!important;
  439.             }
  440.             .respo-center-mobile {
  441.             text-align:center !important;
  442.             }
  443.             .respo-spacer {
  444.             height:100px!important;        
  445.             }
  446.             }
  447.     </style>
  448.  
  449.  
  450.   </head>
  451.   <body>
  452.  
  453.   <?php
  454.     // Do not use &post, it leads to problems...
  455.     foreach ($posts as $post) {
  456.     // Setup the post (WordPress requirement)
  457.     setup_postdata($post);
  458.     ?> 
  459.  
  460.     <!-- ********************************************************************************************************* -->
  461.     <!-- Begin Module: 1 Column | NoPadding | NoBreak -->
  462.     <table width="100%" class="BackgroundColor04" bgcolor="#ebebeb"   cellpadding="0" cellspacing="0" border="0" style="table-layout: fixed; margin: 0 auto;">
  463.         <tbody>
  464.             <tr>
  465.                 <td align="center" style="-webkit-text-size-adjust: none;">
  466.                     <table class="BoxWrap" width="800" align="center" cellpadding="0" cellspacing="0">
  467.                         <tbody>
  468.                             <tr>
  469.                                 <td  width="800" height="10" bgcolor="#000" style="-webkit-text-size-adjust: none;"></td>
  470.                             </tr>
  471.                        
  472.                         </tbody>
  473.                     </table>
  474.                 </td>
  475.             </tr>
  476.             <!-- End Module: 1 Column | NoPadding | NoBreak -->
  477.         </tbody>
  478.     </table>
  479.  
  480.     <!-- ********************************************************************************************************* -->
  481.     <!-- Begin Module: 2 Column | Padding | BreakOnPC -->
  482.     <table width="100%" class="BackgroundColor04" bgcolor="#ebebeb" cellpadding="0" cellspacing="0" border="0" style="table-layout: fixed; margin: 0 auto;">
  483.         <tbody>
  484.             <tr>
  485.                 <td align="center" style="-webkit-text-size-adjust: none;">
  486.                     <table class="BoxWrap BackgroundColor01" bgcolor="#ebebeb" width="800" align="center" cellpadding="0" cellspacing="0">
  487.                         <tbody>
  488.                             <tr>
  489.                                 <td  width="100%" height="20" style="-webkit-text-size-adjust: none;"></td>
  490.                             </tr>
  491.                             <tr>
  492.                                
  493.                                 <td width="560" style="-webkit-text-size-adjust: none;">
  494.                                     <!-- // Begin: First Column \\ -->
  495.                                     <table class="Respo1Column" align="left" cellpadding="0" cellspacing="0">
  496.                                         <tbody>
  497.                                             <tr>
  498.                                                 <td height="55" class="Respo1Column" align="left" valign="middle" style="-webkit-text-size-adjust: none;">
  499.                                                 <img src="<?php echo $theme_url; ?>/img/logo-news.png" width="154" height="55" alt="almosementi"></td>
  500.                                             </tr>
  501.                                         </tbody>
  502.                                     </table>
  503.                                     <!-- // End: First Column \\ -->
  504.                                     <!-- ************************** -->
  505.                                    
  506.                                 </td>
  507.                                
  508.                             </tr>
  509.                             <tr>
  510.                                 <td  width="100%" height="12" style="-webkit-text-size-adjust: none;"></td>
  511.                             </tr>
  512.                         </tbody>
  513.                     </table>
  514.                 </td>
  515.             </tr>
  516.             <!-- End Module: 2 Column | Padding | BreakOnPC -->
  517.         </tbody>
  518.     </table>
  519.  
  520.     <!-- ********************************************************************************************************* -->
  521.     <!-- Begin Module: 1 Column | NoPadding | NoBreak -->
  522.     <table width="100%" class="BackgroundColor04" bgcolor="#ebebeb" cellpadding="0" cellspacing="0" border="0" style="table-layout: fixed; margin: 0 auto;">
  523.         <tbody>
  524.             <tr>
  525.                 <td align="center" style="-webkit-text-size-adjust: none;">
  526.                     <table class="BoxWrap BackgroundColor01" bgcolor="#ebebeb" width="800" align="center" cellpadding="0" cellspacing="0">
  527.                         <tbody>
  528.                             <tr>
  529.                                 <td style="-webkit-text-size-adjust: none;">
  530.                                     <table width="100%" cellpadding="0" cellspacing="0">
  531.                                         <tbody>
  532.                                             <tr>
  533.                                                 <td class="RespoImage1ColW" width="800" valign="top" style="-webkit-text-size-adjust: none;">
  534.                                                    
  535.                                                                                             <?php
  536. if ( has_post_thumbnail() ) {
  537.   // the current post has a thumbnail
  538.   the_post_thumbnail('newsletter');
  539. } else { ?>
  540. <?php } ?>
  541.  
  542.                                                 </td>
  543.                                             </tr>
  544.                                         </tbody>
  545.                                     </table>
  546.                                 </td>
  547.                             </tr>
  548.                         </tbody>
  549.                     </table>
  550.                 </td>
  551.             </tr>
  552.             <!-- End Module: 1 Column | NoPadding | NoBreak -->
  553.         </tbody>
  554.     </table>
  555.  
  556.     <!-- ********************************************************************************************************* -->
  557.     <!-- Begin Module: Paragraph - One Column Segment -->
  558.     <table width="100%" class="BackgroundColor04" bgcolor="#ebebeb" cellpadding="0" cellspacing="0" border="0" style="table-layout: fixed; margin: 0 auto;">
  559.         <tbody>
  560.             <tr>
  561.                 <td align="center" style="-webkit-text-size-adjust: none;">
  562.                     <table class="BoxWrap fixed-bg-style BackgroundColor05" bgcolor="#ebebeb" width="800" align="center" cellpadding="0" cellspacing="0">
  563.                         <tbody>
  564.                             <tr>
  565.                                 <td width="100%" colspan="3" height="30" style="-webkit-text-size-adjust: none;">&nbsp;</td>
  566.                             </tr>
  567.                            
  568.                             <tr>
  569.                                 <td valign="top" width="290" class="RespoTabletWidth" style="-webkit-text-size-adjust: none;">
  570.                                
  571.                                 <table width="100%" cellpadding="0" cellspacing="0">
  572.                                         <tbody>
  573.                                             <tr>
  574.                                                 <td valign="top"  style="color: #00b4ff!important;text-align: left;-webkit-text-size-adjust: none; font-family: 'Merriweather', sans-serif; font-size: 16px;font-weight: 400;font-style: normal;">
  575.                                                     <span><?php the_time('j F y');?></span>
  576.                                                 </td>
  577.                                             </tr>
  578.                                             <tr>
  579.                                                 <td height="10" style="-webkit-text-size-adjust: none;"></td>
  580.                                             </tr>
  581.                                            
  582.                                            
  583.                                             <!-- Button -->
  584.                                             <tr>
  585.                                                
  586.                                                 </td>
  587.                                             </tr>
  588.                                         </tbody>
  589.                                     </table>
  590.                                
  591.                                
  592.                                
  593.                                
  594.                                
  595.                                
  596.                                
  597.                                 </td>
  598.                                 <td class="RespoTabletWidth" width="500" style="-webkit-text-size-adjust: none;">
  599.                                     <table width="100%" cellpadding="0" cellspacing="0">
  600.                                         <tbody>
  601.                                             <tr>
  602.                                                 <td width="100%" class="Text_H2" style="color: #1a161a!important;text-align: left;-webkit-text-size-adjust: none; font-family: 'Raleway', sans-serif; font-size: 36px;letter-spacing: 1px; font-weight: 400;font-style: normal;text-transform: capitalize;">
  603.                                                     <span><?php the_title();?></span>
  604.                                                 </td>
  605.                                             </tr>
  606.                                             <tr>
  607.                                                 <td height="10" style="-webkit-text-size-adjust: none;"></td>
  608.                                             </tr>
  609.                                             <tr>
  610.                                                 <td  class="Text_H3" style="color: #1a161a!important;text-align: left;-webkit-text-size-adjust: none;font-family: 'Raleway', sans-serif;font-size: 14px;letter-spacing: 0px;font-weight: 400;font-style: normal;text-decoration: none;text-transform: capitalize;line-height: 175%;" mc:edit="Text_H13">
  611.                                                     <span><?php the_content();?></span>
  612.                                                 </td>
  613.                                             </tr>
  614.                                
  615.                                         </tbody>
  616.                                     </table>
  617.                                 </td>
  618.                                
  619.                             </tr>
  620.                             <tr>
  621.                                 <td width="100%" colspan="3" height="120" style="-webkit-text-size-adjust: none;">&nbsp;</td>
  622.                             </tr>
  623.                        
  624.                         </tbody>
  625.                     </table>
  626.                 </td>
  627.             </tr>
  628.         </tbody>
  629.     </table>
  630.     <!-- End Module: Paragraph - One Column Segment -->
  631.    
  632.     <!-- ********************************************************************************************************* -->
  633.     <!-- FOOTER -->
  634.     <table width="100%" class="BackgroundColor04" bgcolor="#ebebeb" cellpadding="0" cellspacing="0" border="0" style="table-layout: fixed; margin: 0 auto;">
  635.         <tbody>
  636.             <tr>
  637.                 <td align="center" style="-webkit-text-size-adjust: none;">
  638.                     <table class="BoxWrap fixed-bg-style BackgroundColor05" bgcolor="#ebebeb" width="800" align="center" cellpadding="0" cellspacing="0">
  639.                         <tbody>
  640.                             <tr>
  641.                                 <td width="100%" colspan="3" height="30" style="-webkit-text-size-adjust: none;">&nbsp;</td>
  642.                             </tr>
  643.                            
  644.                             <tr>
  645.                                 <td valign="top" width="290" class="RespoTabletWidth" style="-webkit-text-size-adjust: none;">
  646.                                
  647.                                 <table width="90%" cellpadding="0" cellspacing="0" style=" border-top:1px solid #1a171b;">
  648.                                         <tbody>
  649.                                             <tr>
  650.                                                 <td valign="top"  style="color: #1a171b;text-align: left;-webkit-text-size-adjust: none; font-family: 'Raleway', sans-serif; font-size: 12px;font-weight: 400;font-style: normal; line-height:15px !important; padding-top:10px;">
  651.                                                     <span> © 2015 almo S.p.A., All rights reserved. <br>
  652.                                                    <a href="mailto:almo@almosementi.eu"> almo@almosementi.eu</a> </span>
  653.                                                 </td>
  654.                                             </tr>
  655.                                             <tr>
  656.                                                 <td height="10" style="-webkit-text-size-adjust: none;"></td>
  657.                                             </tr>
  658.                                            
  659.                                            
  660.                                             <!-- Button -->
  661.                                             <tr>
  662.                                                
  663.                                                 </td>
  664.                                             </tr>
  665.                                         </tbody>
  666.                                     </table>
  667.                                
  668.                                
  669.                                
  670.                                
  671.                                
  672.                                
  673.                                
  674.                                 </td>
  675.                                 <td valign="top" class="RespoTabletWidth" width="500" style="-webkit-text-size-adjust: none; ">
  676.                                     <table width="100%" cellpadding="0" cellspacing="0" style=" border-top:1px solid #1a171b;">
  677.                                         <tbody>
  678.                                             <tr>
  679.                                                 <td width="100%"  style="color: #00b4ff;text-align: left;-webkit-text-size-adjust: none; font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 400;font-style: normal;text-transform: capitalize; padding-top:10px; text-decoration:underline !important;">
  680.                                                     <span><a href="{unsubscription_url}">unsubscribe from this list</a></span>
  681.                                                 </td>
  682.                                             </tr>
  683.    
  684.                                         </tbody>
  685.                                     </table>
  686.                                 </td>
  687.                                
  688.                             </tr>
  689.                             <tr>
  690.                                 <td width="100%" colspan="3" height="30" style="-webkit-text-size-adjust: none;">&nbsp;</td>
  691.                             </tr>
  692.                        
  693.                         </tbody>
  694.                     </table>
  695.                 </td>
  696.             </tr>
  697.         </tbody>
  698.     </table>
  699.  
  700. <!-- end FOOTER -->
  701.  
  702. <?php } ?> 
  703.    
  704.  
  705. </body>
  706. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement