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/subtask_create.php | |
parent | d6ffe08aebff4a29cfea865cdea647d3d2e83ef1 (diff) |
Add HTML tag in email notifications
Diffstat (limited to 'app/Template/notification/subtask_create.php')
-rw-r--r-- | app/Template/notification/subtask_create.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Template/notification/subtask_create.php b/app/Template/notification/subtask_create.php index 094ac543..f5b91d34 100644 --- a/app/Template/notification/subtask_create.php +++ b/app/Template/notification/subtask_create.php @@ -1,3 +1,5 @@ +<html> +<body> <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2> <h3><?= t('New sub-task') ?></h3> @@ -14,4 +16,6 @@ <?php endif ?> </ul> -<?= $this->render('notification/footer', array('task' => $task)) ?>
\ No newline at end of file +<?= $this->render('notification/footer', array('task' => $task)) ?> +</body> +</html>
\ No newline at end of file |