2 [%- USE HTML %][%- USE L -%]
 
   3 <form name="Form" method="post" action="[% script %]">
 
   8     <th class="listtop">[% title %]</th>
 
  15           <th align="right" nowrap>[% 'To' | $T8 %]</th>
 
  17           <td>[% L.input_tag('email', email, size=30, class=(email ? '' : 'initial_focus')) %]</td>
 
  20           <th align="right" nowrap>[% 'Cc' | $T8 %]</th>
 
  21           <td><input name="cc" size="30" value="[% HTML.escape(cc) %]"></td>
 
  25           <th align="right" nowrap>[% 'Bcc' | $T8 %]</th>
 
  26           <td><input name="bcc" size="30" value="[% HTML.escape(bcc) %]"></td>
 
  29           <th align="right" nowrap>[% 'Subject' | $T8 %]</th>
 
  31           <td>[% L.input_tag('subject', subject, size=30, class=(email ? 'initial_focus' : '')) %]</td>
 
  34           <th align="right" nowrap>[% 'Attachment name' | $T8 %]</th>
 
  35           <td><input name="attachment_filename" size="30" value="[% HTML.escape(a_filename) %]"></td>
 
  44           <th align="left" nowrap>[% 'Message' | $T8 %]</th>
 
  47           <td><textarea name="message" rows="15" cols="60" wrap="soft">[% HTML.escape(message) %]</textarea></td>
 
  57 [% FOREACH row = HIDDEN %]<input type="hidden" name="[% row.name %]" value="[% HTML.escape(row.value) %]">
 
  64     <td><hr size="3" noshade></td>
 
  68 <input type="hidden" name="nextsub" value="send_email">
 
  71 <input name="action" class="submit" type="submit" value="[% 'Continue' | $T8 %]">