PluginProbe
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration / 2.0.1
FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration v2.0.1
2.1.0 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 All 42 releases
fluent-boards / app / Views / emails / daily.php

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

38 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 ob_start(); // Start output buffering
3 ?>
4
5
6 <!--Start you code here -->
7 <div class="fbs_daily_reminder">
8 <div class="fbs_email_greeting">
9 <strong class="fbs_bg_white"><?php echo esc_html__('Good Morning', 'fluent-boards') . ', ' . esc_html($name) . '!'; ?></strong>
10 <p class="fbs_bg_white"> It's <?php echo esc_html(gmdate('l, F j, Y')); ?>. <?php echo esc_html__("Here's your task summary for today:", 'fluent-boards'); ?> </p> <?php // This will display the current date as "Today is Monday, January 1, 2022" ?>
11 </div>
12
13 <strong class="fbs_bg_white" style="font-size: 15px"><?php echo esc_html__('Tasks Due Today:', 'fluent-boards'); ?></strong>
14
15 <ul class="fbs_email_task_list_group">
16 <?php foreach ($tasks as $fluent_boards_task): ?>
17 <li class="fbs_email_task_list_item">
18 <a target="_blank"
19 href="<?php echo esc_url($page_url . 'boards/' . $fluent_boards_task->board->id . '/tasks/' . $fluent_boards_task->id . '-' . substr($fluent_boards_task->title, 0, 10)); ?>">
20 <?php echo esc_html($fluent_boards_task->title) . ' '; ?>
21 </a>
22 <?php echo esc_html__('task of board', 'fluent-boards'); ?>
23 <a target="_blank"
24 href="<?php echo esc_url($page_url . 'boards/' . $fluent_boards_task->board->id); ?>">
25 <?php echo esc_html($fluent_boards_task->board->title); ?>
26 </a>
27 </li>
28 <?php endforeach; ?>
29 </ul>
30 </div>
31
32
33 <!--end your code here -->
34
35
36 <?php
37 $fluent_boards_email_content = ob_get_clean();
38 include 'template.php';