0f28c8d67b5682d675c59c0553845f0cfcc011e1
[kivitendo-erp.git] / templates / webpages / generic / edit_email.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 <body onload="fokus()">
4
5 <form name="Form" method="post" action="[% script %]">
6
7 <table width="100%">
8   <tr class="listtop">
9
10     <th class="listtop">[% title %]</th>
11   </tr>
12   <tr height="5"></tr>
13   <tr>
14     <td>
15       <table>
16         <tr>
17           <th align="right" nowrap>[% 'To' | $T8 %]</th>
18
19           <td><input name="email" size="30" value="[% HTML.escape(email) %]"></td>
20         </tr>
21         <tr>
22           <th align="right" nowrap>[% 'Cc' | $T8 %]</th>
23           <td><input name="cc" size="30" value="[% HTML.escape(cc) %]"></td>
24         </tr>
25 [% IF SHOW_BCC %]
26         <tr>
27           <th align="right" nowrap>[% 'Bcc' | $T8 %]</th>
28           <td><input name="bcc" size="30" value="[% HTML.escape(bcc) %]"></td>
29         </tr>[% END %]
30         <tr>
31           <th align="right" nowrap>[% 'Subject' | $T8 %]</th>
32
33           <td><input name="subject" size="30" value="[% HTML.escape(subject) %]"></td>
34         </tr>
35         <tr>
36           <th align="right" nowrap>[% 'Attachment name' | $T8 %]</th>
37           <td><input name="attachment_filename" size="30" value="[% HTML.escape(a_filename) %]"></td>
38       </table>
39     </td>
40   </tr>
41
42   <tr>
43     <td>
44       <table>
45         <tr>
46           <th align="left" nowrap>[% 'Message' | $T8 %]</th>
47         </tr>
48         <tr>
49           <td><textarea name="message" rows="15" cols="60" wrap="soft">[% HTML.escape(message) %]</textarea></td>
50
51         </tr>
52       </table>
53     </td>
54   </tr>
55   <tr>
56     <td>
57
58 [% print_options %]
59 [% FOREACH row = HIDDEN %]<input type="hidden" name="[% row.name %]" value="[% HTML.escape(row.value) %]">
60 [% END %]
61
62     </td>
63   </tr>
64
65   <tr>
66     <td><hr size="3" noshade></td>
67   </tr>
68 </table>
69
70 <input type="hidden" name="nextsub" value="send_email">
71
72 <br>
73 <input name="action" class="submit" type="submit" value="[% 'Continue' | $T8 %]">
74 </form>
75
76 </body>