Olive Branch MS Chamber of Commerce (circa Oct 1999)
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

17 lines
713 B

  1. <?php // email request handler
  2. // include configuration info
  3. require("db.php3");
  4. // setup the recipient and subject
  5. $recipient = "request@olivebranchms.com";
  6. //$recipient = "jimi@midsouth.rr.com";
  7. $subject = "Information Request";
  8. $header = "From: request@olivebranchms.com";
  9. // setup the message content
  10. $message = "This message was automatically generated by the 'Request ";
  11. $message .= "More Info' form \non the olivebranchms.com web site.\n\n";
  12. $message .= "$name\n$address\n$city\n$state\n$zip\n\n";
  13. $message .= "$title\n$company\n$phone - phone\n$fax - fax\n$email";
  14. // send the message
  15. mail($recipient,$subject,$message,$header);
  16. header("Location: http://$domain/page.php3?content=thankyou");
  17. ?>