|
Setting up a Feedback
Form
Directions on How To Create a Feedback
Form

Set your form to POST to:
http://www.nelixstore.com/store/cgi-bin/postmail.asp
You can set the following hidden fields:
1) sendto - this is your e-mail address and the place where
the results of the form will be sent.
i.e. <input type="hidden" name="sendto" value="info@nelix.com">
2) subject - this will be the subject line of the e-mail you
receive.
i.e. <input type="hidden" name="subject" value="Request
for Information">
3) return - this will be the page the user is returned to if
the form is sent successfully. Be sure to include your full URL
in this field.
i.e. <input type="hidden" name="return" value="http://www.nelix.com/thankyou.html">
4) error - this is the page that the user is taken to if an
error occurs. Be sure to include your full URL in this field.
i.e. <input type="hidden" name="error" value="http://www.nelix.com/error.html">
5) CCSender - set this to true if you want a copy of the e-mail
sent to the person who filled out the form.
i.e. <input type="hidden" name="CCSender" value="TRUE">
6) UserMessage - This field is used to display a message for
the user.
i.e. <input type="hidden" name="UserMessage" value="Thank
you for choosing Nelix!">
Other Notes
1) You should name the field that
the user fills in their e-mail address as "email".
i.e. E-Mail: <input type="text" name="email" value="">
2) You can prefix any field name by "req" and it will
be marked as required. Any required fields that aren't filled
out will kick users into your error page.
|