How can I add a feedback form to my website?
myshophosting servers provide industry
standard FORM MAIL components, which allow you to create a feedback form on
your website to collect feedback or customer details. These details
are then emailed to you.
We have put together an example page which contains a basic
feedback form. This page can be found
here.
Form Code Implementation Information:
There are several lines of code you must modify before making the
form live on your website..
1. The Action
<form action="http://www.YOURDOMAINNAME.com.au/cgi-sys/FormMail.cgi"
method="POST">
The action line in the form code is very important. This is
the location of the file on your webserver that makes the form
work correctly. Please ensure your domain name is correct.
2. The Recipient
<input type=hidden name="recipient" value="email@YOURDOMAINNAME.com.au">
Please ensure your correct email address is entered
here. NOTE: The email address must be @ the same domain name as
you specified in the action line above.
3. The Subject
<input type="hidden" name="subject" value="YOUR
FORM NAME">
Enter a subject for your form. This will be in the subject
line of the email you receive after a client fills in the form.
4. Their email address
It is important to capture your customers email address. You
must include these two lines of code to capture their email
address:
<input type="text" name="email">
<input type=hidden name="required" value="email">
5. The redirect
<input type=hidden name="redirect" value="http://www.YOURDOMAIN.com.au/page.htm">
After your client has submitted the form, they must be
directed to a page on your site. It could be your home page or
any other page on your website. Specify the page here.
5. Form Content.
All other parts of the form are standard HTML. You can add
fields by duplicating the example fields and renaming them. You
can also remove unwanted fields form your form if they are not
required.
Once you have completed your form code you can copy and paste it
into an existing page on your website. This form code will work in
ezimerchant on any page.
Extra Services:
If creating your form seems to complicated myshophosting can code
your form for you. A standard form with upto 20 fields costs $110.00
inc GST. The form code will be emailed to you upon completion. For
more information please contact support@myshophosting.com
|