| 1 |
<?php if(!defined( 'ABSPATH' )) exit; // if accessed directly exit ?> |
| 2 |
<!DOCTYPE html> |
| 3 |
<html <?php language_attributes(); ?>> |
| 4 |
<head> |
| 5 |
<meta charset="<?php bloginfo( 'charset' ); ?>"> |
| 6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 8 |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 9 |
|
| 10 |
<?php include(FLUENT_BOARDS_PLUGIN_PATH.'app/Views/emails/common-style.php'); ?> |
| 11 |
|
| 12 |
</head> |
| 13 |
<body> |
| 14 |
<div class="fbs_email_notification"> |
| 15 |
<div class="fbs_email_notification_top"> |
| 16 |
<?php include(FLUENT_BOARDS_PLUGIN_PATH.'app/Views/emails/common-header.php'); ?> |
| 17 |
<div class="fbs_email_notification_contents"> |
| 18 |
<div class="fbs_email_content"> |
| 19 |
<div class="fbs_email_content_left"> |
| 20 |
<img src="<?php echo esc_url($userData['photo']);?>" alt="<?php echo esc_attr($userData['display_name']); ?>" class="fbs-avatar"> |
| 21 |
</div> |
| 22 |
<div class="fbs_email_content_right"> |
| 23 |
<p class="fbs_user_name"><?php echo esc_html($userData['display_name']); ?></p> |
| 24 |
<p class="fbs_email_details"><?php echo wp_kses_post($body); ?></p> |
| 25 |
<div class="fbs_email_comment"><?php echo wp_kses_post($comment); ?></div> |
| 26 |
</div> |
| 27 |
</div> |
| 28 |
</div> |
| 29 |
<div class="fbs_email_notification_bottom"> |
| 30 |
<?php if(!defined('FLUENT_BOARDS_PRO')): ?> |
| 31 |
<span class="fbs_email_footer_text"><?php esc_html_e('Powered By', 'fluent-boards'); ?> |
| 32 |
<strong style="color: #6268F1"><a href="https://fluentboards.com?utm_source=wp&utm_medium=wp_mail&utm_campaign=footer">Fluent Boards</a> </strong> |
| 33 |
</span> |
| 34 |
<?php endif; ?> |
| 35 |
</div> |
| 36 |
</div> |
| 37 |
|
| 38 |
<div class="fbs_email_notification_footer"> |
| 39 |
<?php $fluent_boards_footer_text = ''; ?> |
| 40 |
<?php echo wp_kses_post(apply_filters('fluent_boards/email_footer', $fluent_boards_footer_text)); ?> |
| 41 |
</div> |
| 42 |
</div> |
| 43 |
</body> |
| 44 |
</html> |