Hey,
Can anyone tell me why my contact form will not sumit my enquires to my email. Thank you
Cherish
}
</style>
</head>
<body>
<div id="apDiv3"><img src="dandy dogs big.gif" width="520" height="94"></div>
<div id="apDiv2"></div>
<div id="apDiv4"><img src="phone number.gif" width="232" height="51"></div>
<div id="apDiv5"></div>
<div id="apDiv20"></div>
<div id="apDiv1"><img src="Home butttoon.gif" width="174" height="100"></div>
<div id="apDiv6"><img src="about us button.gif" width="178" height="102"></div>
<div id="apDiv7"><img src="contact us button.gif" width="179" height="102"></div>
<div id="apDiv8"><img src="Gallery Button.gif" width="174" height="100"></div>
<div id="apDiv9"><img src="services button.gif" width="176" height="101"></div>
<div id="apDiv25"><img src="Banner.png" width="598" height="80"></div>
<div id="apDiv10"><img src="paws.png" alt="" width="98" height="261"></div>
<div id="apDiv11"><img src="paws.png" alt="" width="98" height="261"></div>
<div id="apDiv12"><img src="paws.png" alt="" width="98" height="261"></div>
<div id="apDiv13"><img src="paws.png" alt="" width="98" height="261"></div>
<div id="apDiv14"><img src="paws.png" alt="" width="98" height="261"></div>
<div id="apDiv15"><img src="paws.png" alt="" width="98" height="261"></div>
<div id="apDiv16"><img src="paws.png" alt="" width="98" height="261"></div>
<div id="apDiv17"><img src="paws.png" alt="" width="98" height="261"></div>
<div id="apDiv18"><form name="contactform" method="post" action="cherishrose@hotmail.co.uk">
<table width="450px">
<tr>
<td valign="top">
<label for="first_name">First Name *</label>
</td>
<td valign="top">
<input type="text" name="first_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top"">
<label for="last_name">Last Name *</label>
</td>
<td valign="top">
<input type="text" name="last_name" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="email">Email Address *</label>
</td>
<td valign="top">
<input type="text" name="email" maxlength="80" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="telephone">Telephone Number</label>
</td>
<td valign="top">
<input type="text" name="telephone" maxlength="30" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="comments">Comments *</label>
</td>
<td valign="top">
<textarea name="comments" maxlength="1000" cols="25" rows="6"></textarea>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<input type="submit" value="Submit"> <a href="Email" _mce_href="mailto:Cherishrose@hotmail.co.uk">Email">Cherishrose@hotma il.co.uk">Email Form</a>
</td>
</tr>
</table>
</form></div>
</body>
</html>
E-mail forms are made in a server side script such as PHP/ ASP/ .NET, etc... and not pure HTML.
Your script is basic HTML and you're trying to POST to your e-mail address. This is completely wrong.
This should help you: http://phpfmg.sourceforge.net/
Its still not sending to my email address. Here is the code:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body><form name="frmFormMail" action='' method='post' enctype='multipart/form-data' onsubmit='return fmgHandler.onsubmit(this);'>
<input type='hidden' name='formmail_submit' value='Y'>
<div id='err_required' class="form_error" style='display:none;'>
<label class='form_error_title'>Please check the required fields</label>
</div>
<ol class='phpfmg_form' >
<li class='field_block' id='field_0_div'><div class='col_label'>
<label class='form_field'>Title</label> <label class='form_required' >*</label> </div>
<div class='col_field'>
<select name='field_0' id='field_0' class='text_select' >
<option value="Mr." >Mr.</option>
<option value="Mrs." >Mrs.</option>
<option value="Ms." >Ms.</option>
<option value="Miss" >Miss</option>
</select>
<div id='field_0_tip' class='instruction'></div>
</div>
</li>
<li class='field_block' id='field_1_div'><div class='col_label'>
<label class='form_field'>Name</label> <label class='form_required' >*</label> </div>
<div class='col_field'>
<input type="text" name="field_1" id="field_1" value="" class='text_box'>
<div id='field_1_tip' class='instruction'></div>
</div>
</li>
<li class='field_block' id='field_2_div'><div class='col_label'>
<label class='form_field'>Email Address</label> <label class='form_required' > </label> </div>
<div class='col_field'>
<input type="text" name="field_2" id="field_2" value="" class='text_box'>
<div id='field_2_tip' class='instruction'></div>
</div>
</li>
<li class='field_block' id='field_3_div'><div class='col_label'>
<label class='form_field'>Your message</label> <label class='form_required' >*</label> </div>
<div class='col_field'>
<textarea name="field_3" id="field_3" rows=4 cols=25 class='text_area'></textarea>
<div id='field_3_tip' class='instruction'></div>
</div>
</li>
<li class='field_block' id='phpfmg_captcha_div'>
<input type='submit' value='Submit' class='form_button'>
<span id='phpfmg_processing' style='display:none;'>
<img id='phpfmg_processing_gif' src='admin.php?mod=image&func=processing' border=0 alt='Processing...'>
<label id='phpfmg_processing_dots '></label>
</span> </li>
</ol>
</form>
</body>
</html>
I am very
.
Your contact form cannot be processed purely with HTML. You should use a .php element such as sendmail or similar to get it to work.
You should probably Google for website contact form to email to achieve what you want.
We can guide you in the right direction, we cannot do your work for you. If that's what you want, I think you should hire a professional.
Cheers,
ST
These links should help you find out what you're missing out:
http://php.about.com/od/advancedphp/ss/mail.htm
http://www.w3schools.com/php/php_mail.asp
http://www.phpjabbers.com/make-contact-form-and-send-email-in-php-php2 1.html
i hope it was resolved your problem, i just tried one form from http://www.template4all.com and it's worked fine for me, let's know if yours is ok!
North America
Europe, Middle East and Africa
Asia Pacific