Hi guys,
I'm a pretty basic coder with very limited skills. I've been researching this question everywhere and I can't find anything that works.
What I'm trying to do is simply send a form which is filled out on their webpage, to their email address. Currently I am using a mailto: function which I desperately want to avoid. Also, if it helps this site is hosted through godaddy (windows package), if that makes any difference. Here is the HTML for my form:
I've tried a few different options, but when it sends I usually get something like "post not allowed for request.asp."
So I'm pretty stuck, any help would be appreciated. At least a push in the right direction?
I'm a pretty basic coder with very limited skills. I've been researching this question everywhere and I can't find anything that works.
What I'm trying to do is simply send a form which is filled out on their webpage, to their email address. Currently I am using a mailto: function which I desperately want to avoid. Also, if it helps this site is hosted through godaddy (windows package), if that makes any difference. Here is the HTML for my form:
Code:
<form id="pipform" enctype="text/plain" action="mailto:info@planitperfect.net?subject=Plan it Perfect" method="post" onsubmit="javascript:return validateall(this);"> <fieldset style="border:none;"> <label for="">Name:</label><br /> <input type="text" id="name" name="name" /><br /> <label for="">Email:</label><br /> <input type="text" id="email" name="email" /><br /> <label for="area">Phone:</label><br /> <input type="text" id="area" name="area" size="3" maxlength="3" /> - <input type="text" id="first3" name="first3" size="3" maxlength="3" /> - <input type="text" id="last4" name="last4" size="4" maxlength="4" /><br /> <label for="list">How did you hear of us?</label><br /> <select id="list" name="list" name="Hear"> <option>---------</option> <option>Friend</option> <option>Internet</option> <option>Flyer</option> <option>Wedding</option> </select> <br /> <label for="inquiry">Inquiry, Comment, or Suggestion:</label><br /> <textarea id="inquiry" name="inquiry" rows="3" cols="30" name="inquiry"></textarea><br /><br /> <input type="submit" id="submit" value="Submit" /> <input type="reset" id="reset" name="reset" /> </fieldset> </form>
So I'm pretty stuck, any help would be appreciated. At least a push in the right direction?
Comment