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/comment_update.php | |
parent | d6ffe08aebff4a29cfea865cdea647d3d2e83ef1 (diff) |
Add HTML tag in email notifications
Diffstat (limited to 'app/Template/notification/comment_update.php')
-rw-r--r-- | app/Template/notification/comment_update.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Template/notification/comment_update.php b/app/Template/notification/comment_update.php index c22e8f1a..87c785cc 100644 --- a/app/Template/notification/comment_update.php +++ b/app/Template/notification/comment_update.php @@ -1,7 +1,11 @@ +<html> +<body> <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2> <h3><?= t('Comment updated') ?></h3> <?= $this->text->markdown($comment['comment'], 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 |