Hello,
Can someone help me with the code for my form? I'm trying to create a feedback form that my visitors would complete as they exit my site. I would like the form data to be sent to me via email. For some reason the email is not functioning properly. I'm not sure what I'm missing or doing wrong. Thanks in advance!
Here's the code I have set up so far...
<form name="feedback" method="post" action="mailto:customerservice@thestudionextdoor.c om" onSubmit="this.mail; ReadForm (this);">
<p class="style3"><span class="style6">Did you find our website to be easy to navigate through?</span>
<select name="select" size="1">
<option value="Definately Easy" selected>Definately Easy</option>
<option value="Somewhat Easy">Somewhat Easy</option>
<option value="Not Easy at all">Not Easy at all</option>
</select>
</p>
<p class="style3">Did you find our selection of photography and prices to be competitive with other online galleries?
<select name="select2" size="1">
<option value="Great selection, great prices" selected>Great selection, great prices</option>
<option value="Competitive selection, competitive prices">Competitive selection, competitive prices</option>
<option value="Not enough selection, prices too high">Not enough selection, prices too high</option>
</select>
</p>
<p class="style3"> <span class="style6">Please list the reasons you didn't purchase from our website today?</span>
<textarea name="textarea2" cols="25" rows="1">Please be specific...</textarea>
</p>
<p class="style3"> What would you like to see or what suggestions do you have about the website?
<textarea name="textarea" cols="50" rows="2">Please list your suggestions here...</textarea>
</p>
<p align="center"><span class="style3">Thank you for your suggestions! Please click the SUBMIT button below and your suggestions will be evaluated by our team as they are received. If you have further questions or concerns please contact us by phone at 404.664.3227 or via email
customerservice@thestudionextdoor.com.</span></p>
<p align="center">
<input type="submit" name="Submit" value="Submit">
</p>
</form>