diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/email/default/partial.html | 22 |
1 files changed, 22 insertions, 0 deletions
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 & confirm report</a> + </p> +</th> + +[% INCLUDE '_email_bottom.html' %] + |