"Every feminine moment is a building block to a feminine life. Maximize the moment.
Your life deserves your best moments."
include "menu.php";
?>
$form_block = "
";
if ($op != "ds") {
// This are the error messages on the required fields you can add or delete
echo "$form_block";
} else if ($op == "ds") {
if ($sender_name == "") {
$name_err = "Please write your name! ";
$send = "no";
}
if ($sender_company == "") {
$email_err = "Please write the name of your company! ";
$send = "no";
}
if ($sender_email == "") {
$email_err = "Please write your e-mail! ";
$send = "no";
}
if ($message == "") {
$message_err = "Please write your message! ";
$send = "no";
}
if ($send != "no") {
// this is the info that comes on the email when it's ok to send!
$msg = "E-MAIL SENT FROM http://www.vanessaglenne.com/contact/\n";
$msg .= "Sender's Name: $sender_name\n";
$msg .= "Sender's E-Mail: $sender_email\n";
$msg .= "Sender's Company: $sender_company\n";
$msg .= "Message: $message\n\n";
$to = "[email protected]";
$subject = "Information";
$mailheaders = "From: Information\n \n";
$mailheaders .= "Reply-To: $sender_email\n\n";
mail($to, $subject, $msg, $mailheaders);
echo "