PluginProbe
Fluent Support – Helpdesk & Customer Support Ticket System / 2.2.1
Fluent Support – Helpdesk & Customer Support Ticket System v2.2.1
2.4.0 2.3.2 2.3.1 2.3.0 2.2.1 2.2.0 trunk 1.10.0 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.4.0 1.4.1 1.4.2 1.4.5 1.4.6 1.4.7 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 All 68 releases
fluent-support / app / Views / emails / ticket_template.php

ticket_template.php in Fluent Support – Helpdesk & Customer Support Ticket System 2.2.1, at app/Views/emails/ticket_template.php

28 lines 1022 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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