PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / 1.31
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration v1.31
2.0.15 2.0.12 2.0.10 2.0.4 2.0.1 2.0.0 1.95.3 1.95.2 1.95 1.91.6 trunk 1.11 1.12 1.13 1.20 1.21 1.22 1.23 1.30 1.31 1.32 1.35 1.40 1.41 1.45 All 41 releases
fluent-boards / app / Views / emails / template.php

template.php in FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration 1.31, at app/Views/emails/template.php

37 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 <?php echo $content; ?>
20 </div>
21 </div>
22 <div class="fbs_email_notification_bottom">
23 <?php if(!defined('FLUENT_BOARDS_PRO')): ?>
24 <span class="fbs_email_footer_text"><?php esc_html_e('Powered By', 'fluent-boards'); ?>
25 <strong style="color: #6268F1"><a href="https://fluentboards.com?utm_source=wp&utm_medium=wp_mail&utm_campaign=footer">Fluent Boards</a> </strong>
26 </span>
27 <?php endif; ?>
28 </div>
29 </div>
30
31 <div class="fbs_email_notification_footer">
32 <?php $footer_text = ''; ?>
33 <?php echo apply_filters('fluent_boards/email_footer', $footer_text); ?>
34 </div>
35 </div>
36 </body>
37 </html>