# fluent-support/1.10.2/app/Views/emails/ticket_template.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version 1.10.2. 28 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/1.10.2/code/app/Views/emails/ticket_template.php
- Raw: https://pluginprobe.com/plugins/fluent-support/1.10.2/raw/app/Views/emails/ticket_template.php
- Modified: 2025-10-31T20:04:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-support/1.10.2/code/app/Views/emails/ticket_template.php#L10-L20`.

```php
<?php defined('ABSPATH') or die; ?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
    <!--[if gte mso 15]>
    <xml>
    <o:OfficeDocumentSettings>
        <o:AllowPNG/>
        <o:PixelsPerInch>96</o:PixelsPerInch>
    </o:OfficeDocumentSettings>
    </xml>
    <![endif]-->
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1.0" >
    <link rel="profile" href="https://gmpg.org/xfn/11">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
    <div class="fs_comment <?php echo is_rtl() ? 'rtl-align' : ''; ?>">
        <?php echo wp_kses_post($email_body);  // Make sure to properly sanitize $email_body. ?>
    </div>

    <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;' : ''; ?>">
        <?php echo wp_kses_post($email_footer);  // WPCS: XSS ok. ?>
    </div>
</body>
</html>

```
