diff options
Diffstat (limited to 'templates/email/default/update-confirm.html')
-rw-r--r-- | templates/email/default/update-confirm.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/email/default/update-confirm.html b/templates/email/default/update-confirm.html new file mode 100644 index 000000000..40841bd82 --- /dev/null +++ b/templates/email/default/update-confirm.html @@ -0,0 +1,33 @@ +[% + +email_summary = "Confirm your update on " _ site_name; +email_columns = 2; + +PROCESS '_email_settings.html'; + +INCLUDE '_email_top.html'; + +%] + +<th style="[% td_style %][% primary_column_style %]" id="primary_column"> + [% start_padded_box %] + <h1 style="[% h1_style %]">Please confirm your update</h1> + <p style="[% p_style %]">Please click on the link below to confirm your update on [% site_name %].</p> + <p style="margin: 20px auto; text-align: center"> + <a style="[% button_style %]" href="[% token_url %]">Yes, confirm my update</a> + </p> + <p style="[% p_style %]">[% INCLUDE 'update-confirm-donotsend.txt' %]</p> + <p style="[% p_style %]">If you no longer wish to confirm this update, please take no further action.</p> + [% end_padded_box %] +</th> +<th style="[% td_style %][% secondary_column_style %]" id="secondary_column"> + <img style="[% map_image_style %]" src="[% inline_image(problem.static_map, 'map.jpeg') %]" width="310" height="200" alt=""> + [% start_padded_box %] + [% IF update.photo %] + <img style="[% preview_photo_style %]" src="[% inline_image(update.get_first_image_fp) %]" alt="" align="right"> + [% END %] + <p style="[% secondary_p_style %]">[% update.text | html %]</p> + [% end_padded_box %] +</th> + +[% INCLUDE '_email_bottom.html' %] |