webnewbie74
05-18-2011, 04:04 AM
<?php
/* Subject and Email Variables */
$emailSubject = 'Web Enquiry';
$webMaster = 'xxxxxxxxxx@hotmail.com';
/* Gathering data Variables*/
$email = $_POST['name'];
$email = $_POST['phone'];
$email = $_POST['mobile'];
$email = $_POST['email'];
$email = $_POST['suburb'];
$email = $_POST['time'];
$email = $_POST['subject'];
$email = $_POST['source'];
$email = $_POST['comments'];
$body = <<<EOD
<br><hr><br>
Name: $name <br>
Phone: $phone <br>
Mobile: $mobile <br>
Email: $email <br>
Surburb: $suburb <br>
Time: $time <br>
Subject: $subject <br>
Source: $source <br>
Comments : $comments <br>
EOD;
$headers = "From: $email\r\n";
$headers = "Content-type: text/html\r\n";
$success = mail($webMaster,$emailSubject,$body,$headers);
/* Results rendered as HTML*/
$theResults = <<<EOD
<html>
<head>
<title>JakesWorks - travel made easy-Homepage</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #f1f1f1;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #666666;
text-decoration: none;
}
-->
</style>
</head>
<div>
<div align="left">Thank you for your interest! Your email will be answered very soon!</div>
</div>
</body>
</html>
EOD;
echo "$theResults";
?>
/* Subject and Email Variables */
$emailSubject = 'Web Enquiry';
$webMaster = 'xxxxxxxxxx@hotmail.com';
/* Gathering data Variables*/
$email = $_POST['name'];
$email = $_POST['phone'];
$email = $_POST['mobile'];
$email = $_POST['email'];
$email = $_POST['suburb'];
$email = $_POST['time'];
$email = $_POST['subject'];
$email = $_POST['source'];
$email = $_POST['comments'];
$body = <<<EOD
<br><hr><br>
Name: $name <br>
Phone: $phone <br>
Mobile: $mobile <br>
Email: $email <br>
Surburb: $suburb <br>
Time: $time <br>
Subject: $subject <br>
Source: $source <br>
Comments : $comments <br>
EOD;
$headers = "From: $email\r\n";
$headers = "Content-type: text/html\r\n";
$success = mail($webMaster,$emailSubject,$body,$headers);
/* Results rendered as HTML*/
$theResults = <<<EOD
<html>
<head>
<title>JakesWorks - travel made easy-Homepage</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #f1f1f1;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #666666;
text-decoration: none;
}
-->
</style>
</head>
<div>
<div align="left">Thank you for your interest! Your email will be answered very soon!</div>
</div>
</body>
</html>
EOD;
echo "$theResults";
?>