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

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

- Page: https://pluginprobe.com/plugins/fluent-boards/1.45/code/app/Views/emails/common-header.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/1.45/raw/app/Views/emails/common-header.php
- Modified: 2024-08-23T12:13:22+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.45/code/app/Views/emails/common-header.php#L10-L20`.

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

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

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