diff options
Diffstat (limited to 'templates/email/default/alert-update.html')
-rw-r--r-- | templates/email/default/alert-update.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/email/default/alert-update.html b/templates/email/default/alert-update.html new file mode 100644 index 000000000..0a8aadab7 --- /dev/null +++ b/templates/email/default/alert-update.html @@ -0,0 +1,31 @@ +[% + +title = title | html; +email_summary = "New updates on “" _ title _ "”"; +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 %]">New updates on <a href="[% problem_url %]">[% title %]</a></h1> + [% INCLUDE '_email_comment_list.html' %] + <p style="[% p_style %]"><a href="[% unsubscribe_url %]">Unsubscribe from alerts about this report</a></p> + [% end_padded_box %] +</th> +<th style="[% td_style %][% secondary_column_style %]" id="secondary_column"> + <img style="[% map_image_style %]" src="[% inline_image(report.static_map, 'map.jpeg') %]" width="310" height="200" alt=""> + [% start_padded_box %] + [% IF photo %] + <img style="[% preview_photo_style %]" src="[% inline_image(report.get_first_image_fp) %]" alt="" align="right"> + [% END %] + <h2 style="[% h2_style %]">[% title | html %]</h2> + <p style="[% secondary_p_style %]">[% detail | html %]</p> + [% end_padded_box %] +</th> + +[% INCLUDE '_email_bottom.html' %] |