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

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

- Page: https://pluginprobe.com/plugins/fluent-boards/1.21/code/app/Views/emails/comment2.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/1.21/raw/app/Views/emails/comment2.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.21/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>


<!--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';
```
