| 1 |
<?php defined('ABSPATH') or die; ?> |
| 2 |
<!doctype html> |
| 3 |
<html <?php language_attributes(); ?>> |
| 4 |
<head> |
| 5 |
<!--[if gte mso 15]> |
| 6 |
<xml> |
| 7 |
<o:OfficeDocumentSettings> |
| 8 |
<o:AllowPNG/> |
| 9 |
<o:PixelsPerInch>96</o:PixelsPerInch> |
| 10 |
</o:OfficeDocumentSettings> |
| 11 |
</xml> |
| 12 |
<![endif]--> |
| 13 |
<meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 14 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" > |
| 15 |
<link rel="profile" href="https://gmpg.org/xfn/11"> |
| 16 |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 17 |
</head> |
| 18 |
<body> |
| 19 |
<div class="fs_comment <?php echo is_rtl() ? 'rtl-align' : ''; ?>"> |
| 20 |
<?php echo wp_kses_post($email_body); // Make sure to properly sanitize $email_body. ?> |
| 21 |
</div> |
| 22 |
|
| 23 |
<div style="color: #9e9e9e; margin: 10px 0 14px 0; padding-top: 10px;<?php echo apply_filters('fluent_support_email_template_show_border', true) ? 'border-top: 1px solid #eeeeee;' : ''; ?>"> |
| 24 |
<?php echo wp_kses_post($email_footer); // WPCS: XSS ok. ?> |
| 25 |
</div> |
| 26 |
</body> |
| 27 |
</html> |
| 28 |
|