ferma231
Elite Member
- Jul 14, 2011
- 1,749
- 3,598
How to make simple registration form to send all data to my email ?
I have difficulties
I need to make form with email , phone, city and some comments and i want everything be sent to my email
But i have problems with :
If i click submit button , it just open gmail.com what i dont want, i want people to submit all info , they click submit and i receive they data. what should i do ?
Rep+ thanks Guaranted !
Full code -
I have difficulties
I need to make form with email , phone, city and some comments and i want everything be sent to my email
But i have problems with :
Code:
<form action="MAILTO:[email protected]" method="post" enctype="text/plain">
If i click submit button , it just open gmail.com what i dont want, i want people to submit all info , they click submit and i receive they data. what should i do ?
Rep+ thanks Guaranted !
Full code -
Code:
<html><body>
<h3>Send e-mail to [email protected]:</h3>
<form action="MAILTO:[email protected]" method="post" enctype="text/plain">
Name:<br />
<input type="text" name="name" value="your name" /><br />
E-mail:<br />
<input type="text" name="mail" value="your email" /><br />
Comment:<br />
<input type="text" name="comment" value="your comment" size="50" />
<br /><br />
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</body>
</html>