# fluent-boards/1.41/app/Views/emails/comment2.php

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

- Page: https://pluginprobe.com/plugins/fluent-boards/1.41/code/app/Views/emails/comment2.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/1.41/raw/app/Views/emails/comment2.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.41/code/app/Views/emails/comment2.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_email_comment"><?php echo wp_kses_post($comment); ?></div>
    <div class="fbs_invitation_button">
        <a style="background: none; text-decoration: none; color: #FFF" target="_blank" href=" <?php echo $comment_link ?> "> Go To Comment </a>
    </div>
</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';
```
