Hi,
I'm having two problems with my form. The first problem is that the data from the form is not being submitted with the email. The second problem is that right after the submit button on the form is pressed an email window (either outlook or aol mail) pops up and a user has to click the send button on the window for the mail to be sent. It looks very clumsy. Is there anyway to avoid having this email window pop up and just have the form and data be sent automatically?
I would like to use a perl/cgi script to handle this but I'm using a web hosting service and they don't support this. So, I guess I have to use the mailto and I'm not having any luck with it.
Here's a sample of my code below:
<html>
<body>
<form action="mailto:service@url.com" method="post" enctype="text/plain">
<input type="text" name="zip" size="10" maxlength="11"><input type="submit" name="Submit" value="Submit this form">
</form>
</body>
</html>
Thanks for any help anyone can provide,
MBaddar
I'm having two problems with my form. The first problem is that the data from the form is not being submitted with the email. The second problem is that right after the submit button on the form is pressed an email window (either outlook or aol mail) pops up and a user has to click the send button on the window for the mail to be sent. It looks very clumsy. Is there anyway to avoid having this email window pop up and just have the form and data be sent automatically?
I would like to use a perl/cgi script to handle this but I'm using a web hosting service and they don't support this. So, I guess I have to use the mailto and I'm not having any luck with it.
Here's a sample of my code below:
<html>
<body>
<form action="mailto:service@url.com" method="post" enctype="text/plain">
<input type="text" name="zip" size="10" maxlength="11"><input type="submit" name="Submit" value="Submit this form">
</form>
</body>
</html>
Thanks for any help anyone can provide,
MBaddar