+++ /dev/null
-[% 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>