I was able to send myself an email. But it didnt send the variable. If I echo the results it looks great. Heres the code.
$address = "dolemite50@hotmail.com"; // Change to fit...
$re = "From: $email";
$fname = "{$POST['ufname']}";
$lname = "{$POST['ulname']}";
$phone = "{$POST['uphone']}";
$cell = "{$POST['ucell']}";
$email = "{$POST['uemail']}";
$comments = "{$POST['ucomments']}";
$title = "Followup form from {$POST['uname']}";
$interests = "{$POST['int']}";
$content = "<strong>Followup form info:</strong> <br><br>
<strong>First Name: </strong>$fname<br>
<strong>Last Name: </strong>$lname<br>
<strong>Phone:</strong> $phone<br>
<strong>Cell: </strong>$cell<br>
<strong>Email:</strong> $email<br>
<strong>Comments:</strong> $comments";
if(isset($POST['int']) && is_array($POST['int']) && count($POST['int']) > 0) {
$content .= "<br><strong>Interests:</strong> ".implode(', ', $POST['int']);
}
$thank = "<b>Thank you $fname. Your order is now being processed.</b><br><br>
You will receive an invoice during the next 5-10 business days.
If you have any questions please contact us at: <br>
<b>info@spokanevip.com<br>
toll.free 1-8-SPOKANEVIP</b>";
if (! $fname) { $error_messages .= "You must enter a first name.<br>"; }
if (! $lname) { $error_messages .= "You must enter a last name.<br>"; }
if (! $phone) { $error_messages .= "You must enter a phone number.<br>"; }
if (! $email) { $error_messages .= "You must enter a valid email address.<br>"; }
if (! $interests) { $error_messages .= "You must select an interest.<br>"; }
if (! $error_messages) {
echo $thank;
//$from = "MIME-Version: 1.0\r\n";
//$from .= "From: ".$email."\r\n";
echo $content;
mail($address, $title, $content);
}
else { echo "$error_messages"; }
?>
That echos the results fine, but heres what I got in the email. Also, if anybody could critique that code I would love it. I'm sure theres a better way than mine.
Email I Received:
<strong>Followup form info:</strong> <br><br>
<strong>First Name: </strong>kj;kj<br>
<strong>Last Name: </strong>kkj<br>
<strong>Phone:</strong> 8888888<br>
<strong>Cell: </strong>777777<br>
<strong>Email:</strong> adshj@sad.com<br>
<strong>Comments:</strong> asd asjd asdlh<br><strong>Interests:</strong>
realestate, investment
Thanks again. 🙂