I just have configured contact form through my web hosting company, FatCow.
If you are using FatCow, you can have a look the document provided from the website.
Anyway, I am going to list given steps to follow from them.
1) Create <form> tag first - it would be familiar if you have learned basic tags in HTML.
2) Create <input> tag inside of the form
<input type="text" name="fullname" size="25">
In here, name is given with "fullname", which is important because when you receive email from the contact form later, it would be kind of title. (ex, fullname : junmo)
3) Add the code for default subject line
<input type="hidden" name="subject" value="form submission from %%fullName%%">
If you add this line on your code, you will receive the email titled "form submission form from JUNMOGU"
"fullName" is name of field but it is changeable according to your preference.
4) For completion or error page after completing the form.
<input type="hidden" name="thankyou_url" value="yoururl">
<input type="hidden" name="error_url" value="yoururl">
On value, you need to put your url address. The important thing here is that it is best to use full path names
like (http://www.yoursite.com/page.html)
5) Changing the order of your form result.
When you receive the result of form through email, you can appoint specific order.
<input type="hidden" name="order" value="name,email,title">
Which means I would like to see the result in order, name, email and title.
Reference
It is available only for users who are the members of FatCow.
No comments:
Post a Comment