Reputation: 1131
I am currently working on a simple form and i want the info to be collected by a php script and then sent to me as a mail, but i am not receiving the specific email.
Could anybody give any pointers or highlight the problem? thank you
Here is the code for my form:
<form name="bookingForm" method="post" action="send_dates.php">
<table border="0" cellspacing="1" cellpadding="2">
<tr>
<td>Booking From</td>
<td>:</td>
<td><input name="fromDate" id="fromDate" size="20"></td>
<td>To</td>
<td>:</td>
<td><input name="toDate" id="toDate" size="20"></td>
</tr>
<tr>
<td>Name</td>
<td>:</td>
<td><input name="name" type="text" id="name" size="30"></td>
</tr>
<tr>
<td width="20px">Telephone</td>
<td>:</td>
<td><input name="telephone" type="text" id="customer_telephone" size="30"></td>
</tr>
<tr>
<td width="20px">Email</td>
<td>:</td>
<td><input name="customer_mail" type="text" id="customer_mail" size="30"></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><input type="submit" name="submit" value="Submit"> <input type="reset" name="ResetForm" value="Reset"></td>
</tr>
</table>
</form>
And here is my php script:
<?php
$name = $_POST['name'];
$fromDate = $_POST['fromDate'];
$toDate = $_POST['toDate');
$email = $_POST['customer_email'];
$telephone = $_POST['customer_telephone'];
// Mail of reciever
$to = "[email protected]";
// Contact subject
$subject ="Reservation Enquiry from $name";
// Details
$message="From: $name
Email: $email
Telephone: $customer_telephone
--------------------------------------------------------------
Reservation date from: $fromDate to: $toDate ";
// Mail of sender
$mail_from="$customer_mail";
// From
$res=mail($to,$subject,$message);
if($res)
{
header('Location:index.php');
}
?>
Upvotes: 0
Views: 1923
Reputation: 9833
Semicolon missing
$to = "[email protected]";
UPDATE:
Remove if(!empty($data))
loop
Check for $res = mail(...);
Then put
if($res)
{
echo '<script type="text/javascript">
window.location = "index.php";
</script>';
}
else
{
echo 'something wrong';
}
Upvotes: 1
Reputation: 28141
Possible cause is a wrong SMTP server address.
Stop the webserver, correct the SMTP server address in PHP.INI, restart the webserver.
You can check the current configuration by executing <?php phpinfo(); ?>
and to search for SMTP.
Upvotes: 1