PluginProbe
Booking Calendar / 10.11
Booking Calendar v10.11
11.8.4 11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 All 204 releases
booking / core / any / emails_tpl / standard-html-tpl.php

standard-html-tpl.php in Booking Calendar 10.11, at core/any/emails_tpl/standard-html-tpl.php

659 lines 30.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php /**
2 * @version 1.0
3 * @package: Emails
4 * @category: Templates
5 * @author wpdevelop
6 *
7 * @web-site https://wpbookingcalendar.com/
8 * @email info@wpbookingcalendar.com
9 *
10 * @modified 2015-06-16
11 */
12
13 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
14
15 /**
16 * get email template
17 *
18 * @param array $fields_values
19 */
20 function wpbc_email_template_standard_html( $fields_values ) {
21 ob_start();
22
23 $base_color = 'background-color:' . ( empty( $fields_values['base_color'] ) ? '#557da1' : $fields_values['base_color'] ) . ';';
24 $background_color = 'background-color:' . ( empty( $fields_values['background_color'] ) ? '#FDFDFD' : $fields_values['background_color'] ) . ';';
25 $body_color = 'background-color:' . ( empty( $fields_values['body_color'] ) ? '#F5F5F5' : $fields_values['body_color'] ) . ';';
26 $text_color = 'color:' . ( empty( $fields_values['text_color'] ) ? '#333333' : $fields_values['text_color'] ) . ';';
27
28 ////////////////////////////////////////////////////////////////////////////////
29 // HTML Email Template
30 ////////////////////////////////////////////////////////////////////////////////
31 ?>
32 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
33 <html xmlns="http://www.w3.org/1999/xhtml"> <!-- dir="<?php echo is_rtl() ? 'rtl' : 'ltr'?>" -->
34 <head><?php /* //FixIn: 9.3.1.3 ?>
35 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
36 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
37 <meta name="viewport" content="width=device-width, initial-scale=1.0">
38 <?php */ ?><title></title>
39 <style type="text/css">
40 body {
41 Margin: 0;
42 padding: 0;
43 min-width: 100%;
44 <?php echo esc_attr( $background_color ); ?>
45 }
46 table {
47 border-spacing: 0;
48 font-family: sans-serif;
49 <?php echo esc_attr( $text_color ); ?>
50 }
51 td {
52 padding: 0;
53 }
54 img {
55 border: 0;
56 }
57 .wrapper {
58 width: 100%;
59 table-layout: fixed;
60 -webkit-text-size-adjust: 100%;
61 -ms-text-size-adjust: 100%;
62 Margin: 0;
63 padding: 70px 0 70px 0;
64 <?php echo esc_attr( $background_color ); ?>
65 }
66 .webkit {
67 max-width: 600px;
68 }
69 @-ms-viewport {
70 width: device-width;
71 }
72 .outer {
73 Margin: 0 auto;
74 width: 96%;
75 max-width: 600px;
76 box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important;
77 border: 1px solid #dcdcdc;
78 border-radius: 3px !important;
79 <?php echo esc_attr( $body_color ); ?>
80 }
81 .full-width-image img {
82 width: 100%;
83 height: auto;
84 }
85 .header {
86 border-radius: 3px 3px 0 0 !important;
87 color: #ffffff; border-bottom: 0;
88 font-weight: bold;
89 line-height: 100%;
90 vertical-align: middle;
91 font-family: Helvetica, Roboto, Arial, sans-serif;
92 <?php echo esc_attr( $base_color ); ?>
93 }
94 .footer .inner {
95 text-align: center;
96 <?php //echo esc_attr( $base_color ); ?>
97 }
98 .footer .inner p {
99 font-size: 11px;
100 }
101 .inner {
102 padding: 48px;
103 }
104 .header .inner {
105 padding: 10px;
106 }
107 p {
108 Margin: 0;
109 }
110 p.footer {
111 font-size: 11px;
112 }
113 a {
114 color: #ee6a56;
115 text-decoration: underline;
116 }
117 .h1 {
118 font-size: 21px;
119 font-weight: bold;
120 Margin-bottom: 18px;
121 }
122 .header .inner .h1 {
123 color: #ffffff;
124 display: block;
125 font-family: Helvetica, Roboto, Arial, sans-serif;
126 font-size: 30px;
127 font-weight: 300;
128 line-height: 150%;
129 Margin: 0;
130 padding: 26px 48px;
131 text-align: left;
132 text-shadow: 0 1px 0 #7797b4;
133 -webkit-font-smoothing: antialiased;
134 }
135 .h2 {
136 font-size: 18px;
137 font-weight: bold;
138 Margin-bottom: 12px;
139 }
140 .one-column .contents {
141 text-align: left;
142 }
143 .one-column p {
144 font-size: 14px;
145 Margin-bottom: 10px;
146 font-family: Helvetica, Roboto, Arial, sans-serif;
147 font-size: 14px;
148 line-height: 150%;
149 color: #737373;
150 }
151 .one-column p.h2,
152 .two-column .column .contents p.h2 {
153 display: block;
154 font-size: 18px;
155 font-weight: bold;
156 line-height: 130%;
157 Margin: 16px 0 8px;
158 text-align: left;
159 color: #557da1;
160 }
161 .two-column {
162 text-align: center;
163 font-size: 0;
164 }
165
166 .two-column .column {
167 width: 100%;
168 max-width: 280px;
169 display: inline-block;
170 vertical-align: top;
171 }
172 .two-column .column .contents p{
173 font-size: 14px;
174 Margin-bottom: 10px;
175 font-family: Helvetica, Roboto, Arial, sans-serif;
176 font-size: 14px;
177 line-height: 150%;
178 color: #737373;
179 }
180 .two-column .inner,
181 .footer .inner {
182 padding: 10px 48px;
183 }
184 .contents {
185 width: 100%;
186 }
187 .header .inner {
188 width: 100%;
189 }
190 .footer .inner {
191 width: 100%;
192 border-top:1px solid #dddddd;
193 }
194 .two-column .contents {
195 font-size: 14px;
196 text-align: left;
197 }
198 .two-column img {
199 width: 100%;
200 height: auto;
201 }
202 .two-column .text {
203 padding-top: 10px;
204 }
205 .two-column p {
206 font-size: 14px;
207 Margin-bottom: 10px;
208 font-family: Helvetica, Roboto, Arial, sans-serif;
209 font-size: 14px;
210 line-height: 150%;
211 color: #737373;
212 }
213 @media screen and (max-width: 400px) {
214 .two-column .column {
215 max-width: 100% !important;
216 }
217 }
218 @media screen and (min-width: 401px) and (max-width: 620px) {
219 .two-column .column {
220 max-width: 50% !important;
221 }
222 }
223 </style>
224 <!--[if (gte mso 9)|(IE)]>
225 <style type="text/css">
226 table {border-collapse: collapse !important;}
227 </style>
228 <![endif]-->
229 </head>
230 <body style="Margin:0;padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;min-width:100%;<?php echo esc_attr( $background_color ); ?>" <?php echo is_rtl() ? 'rightmargin="0"' : 'leftmargin="0"'; ?> >
231 <center class="wrapper" style="width:100%;table-layout:fixed;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;Margin:0;padding-top:70px;padding-bottom:70px;padding-right:0;padding-left:0;<?php echo esc_attr( $background_color ); ?>" <?php echo is_rtl() ? 'dir="rtl"' : 'dir="ltr"'?> >
232 <div class="webkit" style="max-width:600px;" >
233 <!--[if (gte mso 9)|(IE)]>
234 <table width="600" align="center" style="border-spacing:0;font-family:sans-serif;<?php echo esc_attr( $text_color ); ?>" >
235 <tr>
236 <td style="padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
237 <![endif]-->
238 <table class="outer" align="center" style="border-spacing:0;font-family:sans-serif;<?php echo esc_attr( $text_color ); ?><?php echo esc_attr( $body_color ); ?>Margin:0 auto;width:96%;max-width:600px;box-shadow:0 1px 4px rgba(0,0,0,0.1) !important;border-width:1px;border-style:solid;border-color:#dcdcdc;border-radius:3px !important;" >
239 <?php if ( ! empty( $fields_values['header_img600_src'] ) ) { ?>
240 <!-- Header IMG: 1 column template row -->
241 <tr> <!-- This image must be 600px width (NOT wider). If less, then we need to set in CSS width in px of this image -->
242 <td class="full-width-image" style="padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
243 <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?>
244 <img src="images/header.jpg" alt="" style="border-width:0;width:100%;height:auto;" /> <!-- src="<?php $fields_values['header_img600_src']; ?>" -->
245 </td>
246 </tr>
247 <?php } ?>
248 <!-- Header: 1 column template row -->
249 <tr>
250 <td class="one-column" style="padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
251 <table width="100%" class="header" style="<?php echo esc_attr( $base_color ); ?>border-spacing:0;border-radius:3px 3px 0 0 !important;color:#ffffff;border-bottom-width:0;font-weight:bold;line-height:100%;vertical-align:middle;font-family:Helvetica, Roboto, Arial, sans-serif;" >
252 <tr>
253 <td class="inner" style="padding-top:10px;padding-bottom:10px;padding-right:10px;padding-left:10px;width:100%;" >
254 <p class="h1" style="Margin-bottom:10px;color:#ffffff;display:block;font-family:Helvetica, Roboto, Arial, sans-serif;font-size:30px;font-weight:300;line-height:150%;Margin:0;padding-top:26px;padding-bottom:26px;padding-right:48px;padding-left:48px;text-align:left;text-shadow:0 1px 0 #7797b4;-webkit-font-smoothing:antialiased;" ><?php echo ( wp_kses_post( wptexturize( $fields_values['header_content'] ) ) ); ?></p>
255 </td>
256 </tr>
257 </table>
258 </td>
259 </tr>
260 <!-- Content: 1 column template row -->
261 <tr>
262 <td class="one-column" style="padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
263 <table width="100%" style="border-spacing:0;font-family:sans-serif;<?php echo esc_attr( $text_color ); ?>" >
264 <tr>
265 <td class="inner contents" style="padding-top:48px;padding-bottom:48px;padding-right:48px;padding-left:48px;width:100%;text-align:left;" >
266 <p style="Margin:0;font-size:14px;Margin-bottom:10px;font-family:Helvetica, Roboto, Arial, sans-serif;line-height:150%;color:#737373;" ><?php
267
268 $h2_headers = array('<p class="h2" style="Margin-bottom:10px;font-family:Helvetica, Roboto, Arial, sans-serif;display:block;font-size:18px;font-weight:bold;line-height:130%;Margin:16px 0 8px;text-align:left;color:#557da1;" >', '</p>');
269 $fields_values['content'] = str_replace( array( '<h2>', '</h2>' ), $h2_headers, $fields_values['content'] );
270
271 echo ( wp_kses_post( wptexturize( $fields_values['content'] ) ) );
272 ?></p>
273 </td>
274 </tr>
275 </table>
276 </td>
277 </tr>
278 <!-- Footer: 1 column template row -->
279 <tr>
280 <td class="one-column" style="padding-top:0;padding-bottom:0;padding-right:0;padding-left:0;" >
281 <table width="100%" class="footer" style="border-spacing:0;font-family:sans-serif;<?php echo esc_attr( $text_color ); ?>" >
282 <tr>
283 <td class="inner" style="text-align:center;padding-top:10px;padding-bottom:10px;padding-right:48px;padding-left:48px;width:100%;border-top-width:1px;border-top-style:solid;border-top-color:#dddddd;" >
284 <p style="Margin:0;Margin-bottom:10px;font-family:Helvetica, Roboto, Arial, sans-serif;line-height:150%;color:#737373;font-size:11px;" >
285 <?php /* <a style="color:#ee6a56;text-decoration:underline;" >Forward to a Friend</a> &nbsp; &nbsp; <a style="color:#ee6a56;text-decoration:underline;" >Unsubscribe</a> &nbsp; &nbsp; <a style="color:#ee6a56;text-decoration:underline;" >Preferences</a><br /> */
286 echo ( wp_kses_post( wptexturize( $fields_values['footer_content'] ) ) ); ?>
287 </p>
288 </td>
289 </tr>
290 </table>
291 </td>
292 </tr>
293 </table>
294 <!--[if (gte mso 9)|(IE)]>
295 </td>
296 </tr>
297 </table>
298 <![endif]-->
299 </div>
300 </center>
301 </body>
302 <?php
303
304 return ob_get_clean(); // Return this email content
305 }
306
307
308 return;
309
310 // Exist from this file, at the bottom - original static HTML template for email
311
312 // <editor-fold defaultstate="collapsed" desc=" Source Code of template for parsing at http://inliner.cm/ " >
313
314 ////////////////////////////////////////////////////////////////////////////////
315 // Source Code of template for parsing at http://inliner.cm/
316 ////////////////////////////////////////////////////////////////////////////////
317 ?>
318 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
319 <html xmlns="http://www.w3.org/1999/xhtml"> <!-- dir="<?php echo is_rtl() ? 'rtl' : 'ltr'?>" -->
320 <head><?php /* //FixIn: 9.3.1.3 ?>
321 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
322 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
323 <meta name="viewport" content="width=device-width, initial-scale=1.0">
324 <?php */ ?><title></title>
325 <style type="text/css">
326 body {
327 Margin: 0;
328 padding: 0;
329 min-width: 100%;
330 background-color: #ffffff;
331 }
332 table {
333 border-spacing: 0;
334 font-family: sans-serif;
335 color: #333333;
336 }
337 td {
338 padding: 0;
339 }
340 img {
341 border: 0;
342 }
343 .wrapper {
344 width: 100%;
345 table-layout: fixed;
346 -webkit-text-size-adjust: 100%;
347 -ms-text-size-adjust: 100%;
348 Margin: 0;
349 padding: 70px 0 70px 0;
350 background-color: #f5f5f5;
351 }
352 .webkit {
353 max-width: 600px;
354 }
355 @-ms-viewport {
356 width: device-width;
357 }
358 /* width 100% */
359 .outer {
360 Margin: 0 auto;
361 width: 96%;
362 max-width: 600px;
363 box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important;
364 border: 1px solid #dcdcdc;
365 border-radius: 3px !important;
366 background-color: #fdfdfd;
367 }
368
369 .full-width-image img {
370 width: 100%;
371 height: auto;
372 }
373 .header {
374 border-radius: 3px 3px 0 0 !important;
375 color: #ffffff; border-bottom: 0;
376 font-weight: bold;
377 line-height: 100%;
378 vertical-align: middle;
379 font-family: Helvetica, Roboto, Arial, sans-serif;
380 background-color: #557da1;
381 }
382 .footer .inner {
383 text-align: center;
384 }
385 .footer .inner p {
386 font-size: 11px;
387 }
388 .inner {
389 padding: 48px;
390 }
391 .header .inner {
392 padding: 10px;
393 }
394 p {
395 Margin: 0;
396 }
397 p.footer {
398 font-size: 11px;
399 }
400 a {
401 color: #ee6a56;
402 text-decoration: underline;
403 }
404 .h1 {
405 font-size: 21px;
406 font-weight: bold;
407 Margin-bottom: 18px;
408 }
409 .header .inner .h1 {
410 color: #ffffff;
411 display: block;
412 font-family: Helvetica, Roboto, Arial, sans-serif;
413 font-size: 30px;
414 font-weight: 300;
415 line-height: 150%;
416 Margin: 0;
417 padding: 26px 48px;
418 text-align: left;
419 text-shadow: 0 1px 0 #7797b4;
420 -webkit-font-smoothing: antialiased;
421 }
422 .h2 {
423 font-size: 18px;
424 font-weight: bold;
425 Margin-bottom: 12px;
426 }
427 .one-column .contents {
428 text-align: left;
429 }
430 .one-column p {
431 font-size: 14px;
432 Margin-bottom: 10px;
433 font-family: Helvetica, Roboto, Arial, sans-serif;
434 font-size: 14px;
435 line-height: 150%;
436 color: #737373;
437 }
438 .one-column p.h2,
439 .two-column .column .contents p.h2 {
440 display: block;
441 font-size: 18px;
442 font-weight: bold;
443 line-height: 130%;
444 Margin: 16px 0 8px;
445 text-align: left;
446 color: #557da1;
447 }
448 .two-column {
449 text-align: center;
450 font-size: 0;
451 }
452 /* Previously 300px. - TODO: need to test if we really need to have here 280 or 300px in the different email applications. Also its possible that we need to have header images, not 280px but only 260px.... */
453 .two-column .column {
454 width: 100%;
455 max-width: 280px;
456 display: inline-block;
457 vertical-align: top;
458 }
459 .two-column .column .contents p{
460 font-size: 14px;
461 Margin-bottom: 10px;
462 font-family: Helvetica, Roboto, Arial, sans-serif;
463 font-size: 14px;
464 line-height: 150%;
465 color: #737373;
466 }
467 .two-column .inner,
468 .footer .inner {
469 padding: 10px 48px;
470 }
471 .contents {
472 width: 100%;
473 }
474 .header .inner {
475 width: 100%;
476 }
477 .footer .inner {
478 width: 100%;
479 border-top:1px solid #dddddd;
480 }
481 .two-column .contents {
482 font-size: 14px;
483 text-align: left;
484 }
485 .two-column img {
486 width: 100%;
487 height: auto;
488 }
489 .two-column .text {
490 padding-top: 10px;
491 }
492 .two-column p {
493 font-size: 14px;
494 Margin-bottom: 10px;
495 font-family: Helvetica, Roboto, Arial, sans-serif;
496 font-size: 14px;
497 line-height: 150%;
498 color: #737373;
499 }
500 /*Media Queries*/
501 @media screen and (max-width: 400px) {
502 .two-column .column {
503 max-width: 100% !important;
504 }
505 }
506 @media screen and (min-width: 401px) and (max-width: 620px) {
507 .two-column .column {
508 max-width: 50% !important;
509 }
510 }
511 </style>
512 <!--[if (gte mso 9)|(IE)]>
513 <style type="text/css">
514 table {border-collapse: collapse;}
515 </style>
516 <![endif]-->
517 </head>
518 <body> <!-- <?php echo is_rtl() ? 'rightmargin="0"' : 'leftmargin="0"'; ?> -->
519 <center class="wrapper" > <!-- <?php echo is_rtl() ? 'dir="rtl"' : 'dir="ltr"'?> -->
520 <div class="webkit">
521 <!--[if (gte mso 9)|(IE)]>
522 <table width="600" align="center">
523 <tr>
524 <td>
525 <![endif]-->
526 <table class="outer" align="center">
527 <!-- <?php if ( ! empty( $fields_values['header_img600_src'] ) ) { ?> -->
528 <!-- Header IMG: 1 column template row -->
529 <tr> <!-- This image must be 600px width (NOT wider). If less, then we need to set in CSS width in px of this image -->
530 <td class="full-width-image">
531 <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?>
532 <img src="images/header.jpg" alt="" /> <!-- src="<?php $fields_values['header_img600_src']; ?>" -->
533 </td>
534 </tr>
535 <!-- <?php } ?> -->
536 <!-- Header: 1 column template row -->
537 <tr>
538 <td class="one-column">
539 <table width="100%" class="header">
540 <tr>
541 <td class="inner">
542 <p class="h1">HTML Email Header</p> <!-- <?php echo ( wp_kses_post( wptexturize( $fields_values['header_content'] ) ) ); ?> -->
543 </td>
544 </tr>
545 </table>
546 </td>
547 </tr>
548
549 <!-- Content: 1 column template row -->
550 <tr>
551 <td class="one-column">
552 <table width="100%">
553 <tr>
554 <td class="inner contents"> <!-- <?php echo ( wp_kses_post( wptexturize( $fields_values['content'] ) ) ); ?> -->
555 <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed aliquet diam a facilisis eleifend. Cras ac justo felis. Mauris faucibus, orci eu blandit fermentum, lorem nibh sollicitudin mi, sit amet interdum metus urna ut lacus.</p>
556 <p class="h2">Lorem ipsum dolor</p>
557 <p>Fusce eu euismod leo, a accumsan tellus. Quisque vitae dolor eu justo cursus egestas. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed sit amet sapien odio. Sed pellentesque arcu mi, quis malesuada lectus lacinia et. Cras a tempor leo.</p>
558 </td>
559 </tr>
560 </table>
561 </td>
562 </tr>
563 <!-- <?php if ( ( ! empty( $fields_values['content_column_1'] ) ) && ( ! empty( $fields_values['content_column_2'] ) ) ) { ?> -->
564 <!-- Content: 2 columns template row -->
565 <tr>
566 <td class="two-column">
567 <!--[if (gte mso 9)|(IE)]>
568 <table width="100%">
569 <tr>
570 <td width="50%" valign="top">
571 <![endif]-->
572 <div class="column">
573 <!-- Column 1 -->
574 <table width="100%">
575 <tr>
576 <td class="inner">
577 <table class="contents">
578 <!-- <?php if ( ! empty( $fields_values['header_column_1_img260_src'] ) ) { ?> -->
579 <tr>
580 <td>
581 <!-- width of image must be 260px -->
582 <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?>
583 <img src="images/two-column-01.jpg" alt="" /> <!-- src="<?php $fields_values['header_column_1_img260_src']; ?>" -->
584 </td>
585 </tr>
586 <!-- <?php } ?> -->
587 <tr>
588 <td class="text"> <!-- <?php echo ( wp_kses_post( wptexturize( $fields_values['content_column_1'] ) ) ); ?> -->
589 <p>Column 1 Content .... Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed aliquet diam a facilisis eleifend. Cras ac justo felis. Mauris faucibus, orci eu blandit fermentum, lorem nibh sollicitudin mi, sit amet interdum metus urna ut lacus. </p>
590 </td>
591 </tr>
592 </table>
593 </td>
594 </tr>
595 </table>
596 </div>
597 <!--[if (gte mso 9)|(IE)]>
598 </td><td width="50%" valign="top">
599 <![endif]-->
600 <div class="column">
601 <!-- Column 2 -->
602 <table width="100%">
603 <tr>
604 <td class="inner">
605 <table class="contents">
606 <!-- <?php if ( ! empty( $fields_values['header_column_2_img260_src'] ) ) { ?> -->
607 <tr>
608 <td>
609 <!-- width of image must be 260px -->
610 <?php // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage ?>
611 <img src="images/two-column-02.jpg" alt="" /> <!-- src="<?php $fields_values['header_column_2_img260_src']; ?>" -->
612 </td>
613 </tr>
614 <!-- <?php } ?> -->
615 <tr>
616 <td class="text"> <!-- <?php echo ( wp_kses_post( wptexturize( $fields_values['content_column_2'] ) ) ); ?> -->
617 <p>Column 2 Content .... Fusce eu euismod leo, a accumsan tellus. Quisque vitae dolor eu justo cursus egestas. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed sit amet sapien odio. Sed pellentesque arcu mi, quis malesuada lectus lacinia et. Cras a tempor leo. </p>
618 </td>
619 </tr>
620 </table>
621 </td>
622 </tr>
623 </table>
624 </div>
625 <!--[if (gte mso 9)|(IE)]>
626 </td>
627 </tr>
628 </table>
629 <![endif]-->
630 </td>
631 </tr>
632 <!-- <?php } ?> -->
633 <!-- Footer: 1 column template row -->
634 <tr>
635 <td class="one-column">
636 <table width="100%" class="footer">
637 <tr>
638 <td class="inner"> <!-- <?php echo ( wp_kses_post( wptexturize( $fields_values['footer_content'] ) ) ); ?> -->
639 <p>
640 <a>Forward to a Friend</a> &nbsp; &nbsp; <a>Unsubscribe</a> &nbsp; &nbsp; <a>Preferences</a><br />
641 You are receiving this email because you are either purchased product at WPBC or you entered your email at WPBC
642 </p>
643 </td>
644 </tr>
645 </table>
646 </td>
647 </tr>
648
649 </table>
650 <!--[if (gte mso 9)|(IE)]>
651 </td>
652 </tr>
653 </table>
654 <![endif]-->
655 </div>
656 </center>
657 </body>
658 <?php
659 // </editor-fold>