i want to create a form so people can fill it out and it sends it straight to me at my e-mail address. i have tried this code i don't seem to get the e-mail
<form action="MAILTO:
[email protected]" method="post" enctype="text/plain">
<input type="text" name="name"
value="Your Name" size="35"><br>
<input type="text" name="mail"
value="E-mail Address" size="35">
<br><input type="text" name="webbie"
value="http://" size="35">
<br>
<textarea name="Message" rows=10 cols=50>Your Message?</textarea><br>
<br><br>
<input type="submit" value="Send">
<input type="reset" value="Re-do">
</form>
i got the code from w3schools.com and editing the code a bit.