diff options
author | Frédéric Guillot <fred@kanboard.net> | 2019-04-27 20:45:21 -0700 |
---|---|---|
committer | fguillot <fred@kanboard.net> | 2019-04-27 21:23:32 -0700 |
commit | 11b6bf6d25668b8bb9d0304c30f803f8194ab1d8 (patch) | |
tree | caa4e19fb7bdc1dade4bdf1b91202c723282f93d /app/Template/notification/task_overdue.php | |
parent | d6ffe08aebff4a29cfea865cdea647d3d2e83ef1 (diff) |
Add HTML tag in email notifications
Diffstat (limited to 'app/Template/notification/task_overdue.php')
-rw-r--r-- | app/Template/notification/task_overdue.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Template/notification/task_overdue.php b/app/Template/notification/task_overdue.php index cb954c0b..88140af0 100644 --- a/app/Template/notification/task_overdue.php +++ b/app/Template/notification/task_overdue.php @@ -1,3 +1,5 @@ +<html> +<body> <h2><?= t('Overdue tasks for the project(s) "%s"', $project_name) ?></h2> <table style="font-size: .8em; table-layout: fixed; width: 100%; border-collapse: collapse; border-spacing: 0; margin-bottom: 20px;" cellpadding=5 cellspacing=1> @@ -34,4 +36,6 @@ </td> </tr> <?php endforeach ?> -</table>
\ No newline at end of file +</table> +</body> +</html>
\ No newline at end of file |