diff options
Diffstat (limited to 'templates/email/fiksgatami/contact.html')
-rw-r--r-- | templates/email/fiksgatami/contact.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/templates/email/fiksgatami/contact.html b/templates/email/fiksgatami/contact.html new file mode 100644 index 000000000..f6cbabef2 --- /dev/null +++ b/templates/email/fiksgatami/contact.html @@ -0,0 +1,43 @@ +[% + +subject_html = subject | html; +name = form_name | html; +email_summary = "“" _ subject_html _ "” – Melding fra " _ name _ " på " _ host; +email_footer = "Sendt via " _ host _ ", IP " _ ip; +email_columns = 1; + +PROCESS '_email_settings.html'; + +INCLUDE '_email_top.html'; + +%] + +<th style="[% td_style %][% contact_meta_style %]"> + <table [% table_reset %]> + <tr style="color: #111;"> + <th style="[% contact_th_style %]">Fra</th> + <td style="[% contact_td_style %]">[% name %] <<a href="mailto:[% em | html %]">[% em | html %]</a>></td> + </tr> + </table> +</th> +</tr> + +<tr> +<th style="[% td_style %][% only_column_style %]"> + <h1 style="[% h1_style %]">[% subject | html %]</h1> + [% message | html | html_para | replace('<p>', '<p style="' _ p_style _ '">') %] + [%~ IF complaint %] + <p style="[% secondary_p_style %]"> + [% complaint | html %] + - <a href="[% problem_url %]">Report</a> + - <a href="[% admin_url %]">Admin</a> + </p> + [%~ END %] + [%~ IF user_agent %] + <p style="[% secondary_p_style %]"> + User Agent: [% user_agent | html %] + </p> + [%~ END %] +</th> + +[% INCLUDE '_email_bottom.html' %] |