]> wagnertech.de Git - kivitendo-erp.git/blobdiff - templates/webpages/generic/edit_email_en.html
locales.pl von nach locale/en kopiert und dort ausgeführt.
[kivitendo-erp.git] / templates / webpages / generic / edit_email_en.html
diff --git a/templates/webpages/generic/edit_email_en.html b/templates/webpages/generic/edit_email_en.html
new file mode 100644 (file)
index 0000000..52291fd
--- /dev/null
@@ -0,0 +1,75 @@
+[% USE HTML %]<body onload="fokus()">
+
+<form name="Form" method="post" action="[% script %]">
+
+<table width="100%">
+  <tr class="listtop">
+
+    <th class="listtop">[% title %]</th>
+  </tr>
+  <tr height="5"></tr>
+  <tr>
+    <td>
+      <table>
+        <tr>
+          <th align="right" nowrap>To</th>
+
+          <td><input name="email" size="30" value="[% HTML.escape(email) %]"></td>
+        </tr>
+        <tr>
+          <th align="right" nowrap>Cc</th>
+          <td><input name="cc" size="30" value="[% HTML.escape(cc) %]"></td>
+        </tr>
+[% IF SHOW_BCC %]
+        <tr>
+          <th align="right" nowrap>Bcc</th>
+          <td><input name="bcc" size="30" value="[% HTML.escape(bcc) %]"></td>
+        </tr>[% END %]
+        <tr>
+          <th align="right" nowrap>Subject</th>
+
+          <td><input name="subject" size="30" value="[% HTML.escape(subject) %]"></td>
+        </tr>
+        <tr>
+          <th align="right" nowrap>Attachment name</th>
+          <td><input name="attachment_filename" size="30" value="[% HTML.escape(a_filename) %]"></td>
+      </table>
+    </td>
+  </tr>
+
+  <tr>
+    <td>
+      <table>
+        <tr>
+          <th align="left" nowrap>Message</th>
+        </tr>
+        <tr>
+          <td><textarea name="message" rows="15" cols="60" wrap="soft">[% HTML.escape(message) %]</textarea></td>
+
+        </tr>
+      </table>
+    </td>
+  </tr>
+  <tr>
+    <td>
+
+[% print_options %]
+[% FOREACH row = HIDDEN %]<input type="hidden" name="[% row.name %]" value="[% HTML.escape(row.value) %]">
+[% END %]
+
+    </td>
+  </tr>
+
+  <tr>
+    <td><hr size="3" noshade></td>
+  </tr>
+</table>
+
+<input type="hidden" name="nextsub" value="send_email">
+
+<br>
+<input name="action" class="submit" type="submit" value="Continue">
+</form>
+
+</body>
+</html>