IronRocket
Technical User
I am trying to create a simple page where I have a form (Name, e-mail address, and comment) and want to submit it to my e-mail. When I tried it out, the page would literally time out on me. Just wondering what the problem is. Here is the code below:
<html><head><title>Practice on Forms</title></head>
<body>
<form action="MAILTO:MShrigley01@yahoo.com" method="post" enctype="text/plain">
<h3>This form sends an e-mail to MShrigley01@yahoo.com</h3>
<br />
Name:<br />
<input type="text" name="name" size="20">
<br />
e-mail:<br />
<input type="text" name="mail" size="20">
<br />
Comment:<br />
<input type="text" name="comment" size="40">
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</body>
</html>