# fluent-boards/1.91.6/app/Views/emails/common-header.php

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

- Page: https://pluginprobe.com/plugins/fluent-boards/1.91.6/code/app/Views/emails/common-header.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/1.91.6/raw/app/Views/emails/common-header.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/1.91.6/code/app/Views/emails/common-header.php#L10-L20`.

```php
<div class="fbs_email_notification_head">
    <?php
    $fluent_boards_email_header = '';

    if ($site_logo) {
        $fluent_boards_email_header .= '<img src="' . esc_url($site_logo) . '" width="100px" alt="' . esc_attr($site_title) . '">';
    } else {
        $fluent_boards_email_header .= '<div class="fbs_head_text">' . esc_html($site_title) . '</div>';
    }

    // Apply the filter to the email header
    $fluent_boards_email_header = apply_filters('fluent_boards/email_header', $fluent_boards_email_header);
    // Output the final email header (allow safe HTML)
    echo wp_kses_post($fluent_boards_email_header);
    ?>
</div>
```
