|
Share this website with a friend.
|
if (@$_POST['Send']=="Send")
{
$name=$_POST['name'];
$email=$_POST['email'];
$subject = $name. " recommends this site !";
$message= "Hello, \n\nYour friend " .$name. " thought you might be interested in visiting the following website: \n\n http://www.forrestpilates.com \n\n\n\n\n\n\n\nNote: This message was not sent unsolicited. It was sent through a form located at http://www.forrestpilates.com. If you believe this message was received on error, please disregard it.";
$headers = 'From: forrestpilates@hotmail.com' . "\r\n" . 'Reply-To: forrestpilates@hotmail.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion();
mail($email, $subject, $message, $headers);
echo "Your email was sent to: $email";
}
?>
|
|