if(!$_REQUEST[action]) { ?>
} else {
$message = "This Company or Organization would like to participate in your Link Exchange Program:
"
. "Name: $_REQUEST[name]
"
. "Company or Organization: $_REQUEST[company]
"
. "Address: $_REQUEST[address]
"
. "City: $_REQUEST[city]
"
. "State: $_REQUEST[state]
"
. "Zip: $_REQUEST[zip]
"
. "Day Phone: $_REQUEST[dayphone]
"
. "Evening Phone: $_REQUEST[nightphone]
"
. "E-mail: $_REQUEST[email]
"
. "Website: $_REQUEST[website]
"
. "Comments: $_REQUEST[comments]";
$to = 'sandra@mythicsilver.com';
$subject = 'Mythic Silver Link Exchange Form';
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $_REQUEST[name] <$_REQUEST[email]>\r\n";
$headers .= "Reply-to: <$_REQUEST[email]>\r\n";
$headers .= "Return-path: <$_REQUEST[email]>\r\n";
mail($to, $subject, $message, $headers);
?>
Thank
you. We will be in contact with you soon.
} ?>
|