Click to See Complete Forum and Search --> : Connection failure


mellomello
08-12-2003, 12:24 AM
I've been trying to create a very simple mailto form for the sake of learning. I uploaded it, and each time I test it out, I get an error message saying "A connection failure has occured." I've tried various recipient email address, and have gotten the same result. It can't be my internet connection. I've tried it from a different office, and have also gotten the same result. Any suggestions?

Here's the html:

<head>
<title>test form</title>
</head>
<body>
<FORM action="mailto:xxxx@xxxxxxx.com" method="post" enctype="text/plain">
<BR>
THIS IS THE FORM TO E-MAIL TEST
<BR>
<INPUT size="20" type="text">
<BR>
<INPUT type="submit" name="sbmbut1" value="E-mail Form">
</FORM>
</body>
</html>

Thank you for your help!

DaveSW
08-12-2003, 07:05 AM
what email client do you use? if you use stuff like AOL and online email clients that form method doesn't work, so you'll need to use server side code. Pyro has a php one he gives out if you want it.

btw try adding some form elements inside the form. I don't know what happens without that...

mellomello
08-12-2003, 11:15 AM
Thank you so much for helping me. It's strange cause I don't use an online email client. Also, I've tried adding additional form fields. But, unfortunately, I get the same connection failure message. Any suggestions?