Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Nelson <stuartnelson3@gmail.com>2018-02-06 21:09:59 +0300
committerSean McGivern <sean@gitlab.com>2018-03-26 10:10:19 +0300
commit5f39f9b30853291ec83df2383cd2e7863b72fb27 (patch)
treeba59e062a442f0e796a25d176a6774efd1983cde /app/views/notify/issue_due_email.html.haml
parentbebced8fc9039c5e8a3774af183a8dd9c244f297 (diff)
Send email to recipients
Diffstat (limited to 'app/views/notify/issue_due_email.html.haml')
-rw-r--r--app/views/notify/issue_due_email.html.haml14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/views/notify/issue_due_email.html.haml b/app/views/notify/issue_due_email.html.haml
new file mode 100644
index 00000000000..30ba53cf801
--- /dev/null
+++ b/app/views/notify/issue_due_email.html.haml
@@ -0,0 +1,14 @@
+- if Gitlab::CurrentSettings.email_author_in_body
+ %p.details
+ #{link_to @issue.author_name, user_url(@issue.author)} updated the issue's due date:
+
+- if @issue.assignees.any?
+ %p
+ Assignee: #{@issue.assignee_list}
+
+%p
+ This Issue has a new due date: #{ @issue.due_date }
+
+- if @issue.description
+ %div
+ = markdown(@issue.description, pipeline: :email, author: @issue.author)