Fix / improve notification email subjects and bodies

This commit is contained in:
Scot Hacker 2018-04-08 23:32:52 -07:00
parent 5805cf52ad
commit 782950d904
4 changed files with 7 additions and 5 deletions

View file

@ -200,7 +200,9 @@ def task_detail(request, task_id: int) -> HttpResponse:
body=request.POST['comment-body'],
)
send_email_to_thread_participants(task, request.POST['comment-body'], request.user)
send_email_to_thread_participants(
task, request.POST['comment-body'], request.user,
subject='New comment posted on task "{}"'.format(task.title))
messages.success(request, "Comment posted. Notification email sent to thread participants.")
# Save task edits