Quote:
Originally Posted by Webster
Thanks for your reply,
the thing is after created the form using dreamweaver, i do not know how to make the form deliver to my email after ppl click on submit button, do you know how to do that?
|
Well, put your email address in the form's action. Example:
HTML Code:
<form method="post" action="mailto:youremail@email.com">
this is not an ideal way but it does what you want.