diff --git a/ChangeLog b/ChangeLog index 605651a26..0e65b07af 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,7 +6,7 @@ New features: * Automatic action to assign tasks to its creator * Add the possibility to create a comment when a task is sent by email * Add dropdown menu to autocomplete email field from project members -* Add configurable list of predefined subjects when sending a task by email +* Add configurable list of predefined subjects when sending a task or a a comment by email Version 1.0.44 (May 28, 2017) ----------------------------- diff --git a/app/Controller/CommentMailController.php b/app/Controller/CommentMailController.php index e30d6a55c..144c9a13e 100644 --- a/app/Controller/CommentMailController.php +++ b/app/Controller/CommentMailController.php @@ -20,6 +20,7 @@ class CommentMailController extends BaseController 'errors' => $errors, 'task' => $task, 'project' => $project, + 'members' => $this->projectPermissionModel->getMembersWithEmail($project['id']), ))); } diff --git a/app/Template/comment_mail/create.php b/app/Template/comment_mail/create.php index 019f8a203..8732080a4 100644 --- a/app/Template/comment_mail/create.php +++ b/app/Template/comment_mail/create.php @@ -1,7 +1,7 @@