aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md1
-rw-r--r--templates/email/default/partial.html22
2 files changed, 23 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 642facde6..c60236755 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,7 @@
- Speed up fetching lists of bodies. #2248
- Improve vertical alignment of navigation menu in Internet Explorer 9–11.
- Mobile menu button no longer uses -9999px text-indent hack.
+ - HTML email template for confirming "partial" reports #2263
- Bugfixes:
- Fix display of area/pins on body page when using Bing or TonerLite map.
- Do not scan through all problems to show /_dev pages.
diff --git a/templates/email/default/partial.html b/templates/email/default/partial.html
new file mode 100644
index 000000000..494655df9
--- /dev/null
+++ b/templates/email/default/partial.html
@@ -0,0 +1,22 @@
+[%
+
+email_summary = "Confirm your report on " _ site_name;
+email_columns = 1;
+
+PROCESS '_email_settings.html';
+
+INCLUDE '_email_top.html';
+
+%]
+
+<th style="[% td_style %][% only_column_style %]">
+ <h1 style="[% h1_style %]">Confirm your report</h1>
+ <p style="[% p_style %]">Hello [% report.name || report.email %],</p>
+ <p style="[% p_style %]">Please click on the link below, to confirm the report you have uploaded to [% site_name %] via [% report.service %], and to check or add any details:</p>
+ <p style="margin: 20px auto; text-align: center">
+ <a style="[% button_style %]" href="[% token_url %]">Check &amp; confirm report</a>
+ </p>
+</th>
+
+[% INCLUDE '_email_bottom.html' %]
+