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_update.php | |
parent | d6ffe08aebff4a29cfea865cdea647d3d2e83ef1 (diff) |
Add HTML tag in email notifications
Diffstat (limited to 'app/Template/notification/task_update.php')
-rw-r--r-- | app/Template/notification/task_update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Template/notification/task_update.php b/app/Template/notification/task_update.php index 8d39b152..86b7466e 100644 --- a/app/Template/notification/task_update.php +++ b/app/Template/notification/task_update.php @@ -1,4 +1,8 @@ +<html> +<body> <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2> <?= $this->render('task/changes', array('changes' => $changes, 'task' => $task, 'public' => true)) ?> -<?= $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 |