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

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

- Page: https://pluginprobe.com/plugins/fluent-boards/1.32/code/app/Views/emails/template.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/1.32/raw/app/Views/emails/template.php
- Modified: 2024-05-31T06:41:46+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/1.32/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 $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 $footer_text = ''; ?>
        <?php echo apply_filters('fluent_boards/email_footer', $footer_text); ?>
    </div>
</div>
</body>
</html>
```
