Hello:
Can one insert "form mail coding" onto a Web Designer page? That way one can simply fill out an informational form, click submit, and send it along. Here's an example of such coding:

&nbsp;</p>
<CENTER>
</CENTER>
<FORM METHOD="POST" ACTION="/cgi-sys/formmail.pl">
<p><BR>
<!-- Here we are specifying that the input the visitor provides should be
passed
along to the formmail.pl script. Use this action including in the comments
to make this form work. We have
removed this action so that form does not go aware
<FORM METHOD="POST" ACTION="/cgi-sys/formmail.pl"> -->
<!-- In the next three lines, we are setting the recipient address that
the message should go to, the subject line that the message you
receieve will have, and we are saying that we would like to know
the IP address and browser type of the person submitting the
information. The IP address can be used to track abuse. -->
<INPUT TYPE="hidden" NAME="recipient" VALUE="You@You.com">
<INPUT TYPE="hidden" NAME="subject" VALUE="YourWebsite.com">
<INPUT TYPE="hidden" NAME="env_report" VALUE="REMOTE_HOST,HTTP_USER_AGENT">
<!-- The line below is selecting which page we want to show after the
visitor submits their information. This should be a page letting
them know their message has been sent -->
<INPUT TYPE="hidden" NAME="redirect" VALUE="http://www.YourDomain.com/thanks">
<!-- Prompt for the name of the visitor --><strong> What is your name, please? </strong><BR>
<INPUT TYPE="text" NAME="realname"> <BR>
<BR>
<!-- Prompt the visitor to enter their e-mail address --> <strong>What is your
e-mail address? </strong><BR>
<INPUT TYPE="text" NAME="email"> <BR>
<BR>
<!-- Here we have a pull-down menu to select which product / feature they
are writing us about --><strong>What is the nature of your communication with us today, please?</strong><BR>
<SELECT NAME="Selection:">
<OPTION VALUE="Feedback">Feedback.
<OPTION VALUE="Service Inquiry">Inquiry.<br>
</SELECT>
<BR>
<!-- Here, we are prompting for the message they would like to send us
--> <BR>
<BR>
<!-- Here, we are prompting for the message they would like to send us
--><strong>Please elaborate as you see fit:</strong><BR>
<TEXTAREA NAME="address and companies" cols="35" rows="4" wrap="virtual"></TEXTAREA>
<BR>
<BR>
</p>
<p><strong>Would you care to disclose additional contact information?</strong><BR>
<TEXTAREA NAME="how found us" cols="35" rows="4" wrap="virtual"></TEXTAREA>
</p>
<p><BR>
<!-- The line below specifies that the user must enter their e-mail address
and message to be able to submit their information to the form -->
<INPUT TYPE="hidden" NAME="required" VALUE="email">
<!-- Finally, the Submit and Reset button are generated with the below code
-->
<INPUT TYPE="submit" VALUE="Submit">
<INPUT TYPE="reset" VALUE="Reset">
</p>
</FORM>
<!-- We are ending our formmail.pl section with this tag-->
<!-- If you wanted anything on the contact page below the form section,
that code can be
placed here --