|
CONTACT US
if (!$HTTP_POST_VARS){
?>
}else{
$cuerpo = "Information from your web page\n";
$cuerpo .= "name: " . $HTTP_POST_VARS["name"] . "\n";
$cuerpo .= "subject: " . $HTTP_POST_VARS["subject"] . "\n";
$cuerpo .= "email: " . $HTTP_POST_VARS["email"] . "\n";
$cuerpo .= "message: " . $HTTP_POST_VARS["message"] . "\n";
mail("df@alchymiacomm.com","Information from your web page",$cuerpo);
echo "Thanks, your information has been sent";
}
?>
|