You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
713 B
17 lines
713 B
<?php // email request handler
|
|
// include configuration info
|
|
require("db.php3");
|
|
// setup the recipient and subject
|
|
$recipient = "request@olivebranchms.com";
|
|
//$recipient = "jimi@midsouth.rr.com";
|
|
$subject = "Information Request";
|
|
$header = "From: request@olivebranchms.com";
|
|
// setup the message content
|
|
$message = "This message was automatically generated by the 'Request ";
|
|
$message .= "More Info' form \non the olivebranchms.com web site.\n\n";
|
|
$message .= "$name\n$address\n$city\n$state\n$zip\n\n";
|
|
$message .= "$title\n$company\n$phone - phone\n$fax - fax\n$email";
|
|
// send the message
|
|
mail($recipient,$subject,$message,$header);
|
|
header("Location: http://$domain/page.php3?content=thankyou");
|
|
?>
|