# fluent-boards/2.0.10/app/Views/emails/template.php

FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration, version 2.0.10. 37 lines.

- Page: https://pluginprobe.com/plugins/fluent-boards/2.0.10/code/app/Views/emails/template.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/2.0.10/raw/app/Views/emails/template.php
- Modified: 2025-11-18T07:44: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-boards/2.0.10/code/app/Views/emails/template.php#L10-L20`.

```php
<?php if(!defined( 'ABSPATH' ))  exit; // if accessed directly exit ?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
    <meta charset="<?php bloginfo( 'charset' ); ?>">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <?php include(FLUENT_BOARDS_PLUGIN_PATH.'app/Views/emails/common-style.php'); ?>

</head>
<body>
<div class="fbs_email_notification">
    <div class="fbs_email_notification_top">
        <?php include(FLUENT_BOARDS_PLUGIN_PATH.'app/Views/emails/common-header.php'); ?>
        <div class="fbs_email_notification_contents">
                <div class="fbs_email_content">
                <?php echo wp_kses_post(isset($fluent_boards_email_content) ? $fluent_boards_email_content : $content); ?>
                </div>
        </div>
        <div class="fbs_email_notification_bottom">
            <?php if(!defined('FLUENT_BOARDS_PRO')): ?>
            <span class="fbs_email_footer_text"><?php esc_html_e('Powered By', 'fluent-boards'); ?>
                <strong style="color: #6268F1"><a href="https://fluentboards.com?utm_source=wp&utm_medium=wp_mail&utm_campaign=footer">Fluent Boards</a> </strong>
            </span>
            <?php endif; ?>
        </div>
    </div>

    <div class="fbs_email_notification_footer">
        <?php $fluent_boards_footer_text = ''; ?>
        <?php echo wp_kses_post(apply_filters('fluent_boards/email_footer', $fluent_boards_footer_text)); ?>
    </div>
</div>
</body>
</html>
```
