Complex Mail Form source listing

Here is the HTML-source for the Complex Mail Form.

The beginning and the end of the page's HTML-code has been omitted in the source listing. The HTML-code also includes a lot of formatting code, that makes the page look nice when viewed in the browser. The code that is of interest for the mail form is therefore marked in red in the listing below.

  <form method="POST" 
        action="@**fullsrvname@/mailform.cgi">
    <br>
    &nbsp;
    <font size="3" 
          face="Verdana, Arial, Helvetica, sans-serif">
    NetPhantom MailForm
    </font>
    <p>
    <table border="0" width="374">  
      <tr>
        <td width="50%">
          &nbsp;
          Your e-mail address:
        </td>
        <td width="50%">
          <input type="text" 
                 value="" 
                 name="email_to" 
                 size="24">
        </td>
      </tr>    
      <tr>
        <td width="50%">
          &nbsp;
          Cc address(es):
        </td>
        <td width="50%">
          <input type="text" 
                 value="" 
                 name="email_cc" 
                 maxlenght="50" 
                 size="24">
        </td>
      </tr>  
      <tr>
        <td width="50%">
          &nbsp;
          Blind cc address(es):
        </td>
        <td width="50%">
          <input type="text" 
                 value="" 
                 name="email_bcc" 
                 maxlenght="50" 
                 size="24">
        </td>
      </tr>  
      <tr>
        <td width="50%">
          &nbsp;
          Multiple selection:
        </td>
        <td width="50%">
          <input type="checkbox" 
                 value="selected" 
                 name="cb1">
          Sel 1
          <br>
          <input type="checkbox" 
                 value="selected" 
                 name="cb2">
          Sel 2
          <br>
          <input type="checkbox" 
                 value="selected" 
                 name="cb3">
          Sel 3
          <br>
        </td>
      </tr>
      <tr>
        <td width="50%">
          &nbsp;
          Exclusive selection:
        </td>
        <td width="50%">
          <input type="radio" 
                 value="Radio button 1" 
                 name="excl" 
                 checked>
          Radio button 1
          <br>
          <input type="radio" 
                 value="Radio button 2" 
                 name="excl">
          Radio button 2
        </td>
      </tr>
      <tr>
        <td width="50%">
          &nbsp;
          List selection:
        </td>
        <td width="50%">
          <select value="list_sel" 
                  name="list">
            <option selected>- select a row -
            <option>row 1
            <option>row 2
            <option>row 3
          </select>
        </td>
      </tr>
    </table>

    <input type="hidden" 
           value="NetPhantom Mail Form Demonstration" 
           name="email_subject"> 
    <input type="hidden" 
           value="phantom" 
           name="email_from" 
           size="30">
    <input type="hidden" 
           value="entragroup.com" 
           name="email_server">
    <input type="hidden" 
           value="mail_ok.html" 
           name="email_success_doc">
    <input type="hidden" 
           value="mail_error.html" 
           name="email_error_doc">
    <input type="hidden" 
           value="Release/htdocs/samples/mail/mailf_2_templ.txt" 
           name="email_output">
    <p>
    &nbsp;
    Enter your text here:
    <br>
    &nbsp;
    <textarea rows="3" 
              name="mail_body_text" 
              cols="43"></textarea>
    <p>
    &nbsp;
    <input type="reset" 
           value="Reset">
    <input type="submit" 
           value="Send">
  </form>