Is there a way for the results of a form to be mailed to me?
Yes. Design your web form to call the FormMail script with your address as the recipient. If your name was John Doe, a minimal form would look like:
<form method="post" action="http://www.connectseward.org/misc/mail/cgi/FormMail">
<input type="hidden" name="recipient" value="John.Doe@connectseward.org">
<input type="text" name="feedback"><br> Please enter your comments<br> <input type="submit">
</form>

Back to Top

What hidden fields does FormMail recognize ?
Recipient - Up to 3 Connect Seward addresses that will receive a copy of the results.
<input type="hidden" name="recipient" value="John.Doe@connectseward.org,Jane.Doe@connectseward.org">
subject - The subject line of the email you receive. Useful if you have more than one form.
<input type="hidden" name="subject" value="Web site comments">
redirect - If present, a URL where the user will be redirected after the form is submitted. This could be a customized thank you or a second form to fill out. If not present, FormMail will generate a "success" page telling the user that the submission was successful. You may alter the success page with the optional fields below.
<input type="hidden" name="redirect" value="http://www.connectseward.org/John.Doe/thankyou.html"> bgcolor - Background color for the success page.
background - URL of the background image for the success page.
text_color - Text color for the success page.
link_color - Link color for the success page.
vlink_color - Vlink color for the success page.
alink_color - Alink color for the success page.
title - Title for the success page.
return_link_url - URL for a link on the success page the user can click to continue.
<input type="hidden" name="return_link_url" value="http://www.connectseward.org/John.Doe/Page2.html">
sort - Order in which fields will appear in email. The value may be "alphabetic" for alphabetical ordering of fields or a specific order indicated by "order:" and a comma separated list of field names.
<input type="hidden" name="sort" value="order:name,email,age,comments">
print_config - Used for debugging. Directs FormMail to include the settings in email for the given configuration fields. To include the settings for the "title" and "sort" fields,
<input type="hidden" name="print_config" value="title,sort">
required - The list of fields that must be filled in before the submitted form will be accepted. If any of the fields are blank, an error will be displayed, and the user will be asked to go back to the form.
<input type="hidden" name="required" value="name,comments">
missing_fields_redirect - If present, a URL where the user is redirected when a required field is blank. Useful for finer control over the error the user sees when a required field is blank.
env_report - A list of CGI environment variables that should be included in email. Current choices include REMOTE_HOST, REMOTE_ADDR and HTTP_USER_AGENT.
print_blank_fields - Directs FormMail to include all fields in email, even if the the value is blank. Useful if you print the email and use it as a standard form.