# fluent-boards/1.32/app/Views/emails/invite-external.php

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

- Page: https://pluginprobe.com/plugins/fluent-boards/1.32/code/app/Views/emails/invite-external.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/1.32/raw/app/Views/emails/invite-external.php
- Modified: 2024-07-29T13:19:16+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/invite-external.php#L10-L20`.

```php
<?php
ob_start(); // Start output buffering
?>

    <!--Start you code here -->
    <div class="fbs_email_content_left">
        <img src="<?php echo esc_url($userData['photo']);?>" alt="<?php echo esc_attr($userData['display_name']); ?>" class="fbs-avatar">
    </div>
    <div class="fbs_email_content_right">
        <p class="fbs_user_name"><?php echo esc_html($userData['display_name']); ?></p>
        <p class="fbs_email_details"><?php echo wp_kses_post($body); ?></p>
        <div class="fbs_invitation_button">
            <a style="background: none; text-decoration: none; color: #FFF" target="_blank" href=" <?php echo $boardLink ?> "> <?php echo $btn_title ?> </a>
        </div>
        <p class="fbs_email_details fbs_invite_error">If you’re having trouble clicking the "<?php echo $btn_title ?>" button, copy and paste the URL below into your web browser:</p>
        <p class="fbs_email_details"><?php echo $boardLink ?></p>
    </div>


    <!--end your code here -->
<?php
$content = ob_get_clean(); // Get the content and clean the buffer
// Include the template and pass the content
include 'template.php';
```
