source: extensions/ContactForm/template/mail/content_html.tpl @ 17483

Last change on this file since 17483 was 17483, checked in by mistic100, 12 years ago

entirely rewrite the plugin

  • send mail in html format (configurable to plain)
  • fully configurable email list
  • more...
File size: 935 bytes
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2<html>
3<head>
4  <title>Piwigo Mail</title>
5  <meta http-equiv="Content-Type" content="text/html; charset={$CONTENT_ENCODING}">
6 
7  <style type="text/css">{strip}<!--
8  {$CONTACT_MAIL_CSS}
9  -->{/strip}</style>
10</head>
11
12<body>
13<div id="the_page">
14
15<div id="the_header">
16{$cf_prefix}
17</div>
18
19<div id="the_content">
20  <p>
21    {'Name'|@translate} : {$contact.author}<br>
22    {'Email address'|@translate} : {$contact.email}
23  </p>
24
25  <blockquote>{$contact.content}</blockquote>
26
27  <p>
28    {'IP: %s'|@translate|@sprintf:$contact.ip}<br>
29    {'Browser: %s'|@translate|@sprintf:$contact.agent}
30  </p>
31</div>
32
33<div id="the_footer">
34  {'Sent by'|@translate} <a href="{$GALLERY_URL}">{$GALLERY_TITLE}</a>
35  - {'Powered by'|@translate} <a href="{$PHPWG_URL}" class="Piwigo">Piwigo</a> {$VERSION}
36  - Contact Form
37</div>
38
39</div>
40</body>
41</html>
Note: See TracBrowser for help on using the repository browser.