|
Tell A Friend
if (@$_POST['Send']=="Send")
{
$name=$_POST['name'];
$email=$_POST['email'];
$subject = $name. " wants you to visit this site, its cool!";
//This is the body section of the email and can be substituted for your message
$message= "Hi, \n\n" .$name. " thinks you might like to visit our website : \n\n http://www.biocareersource.com \n\n\n\n\n\n\n\nNote: This message was sent by one of your friends. It was sent through a page located at http://www.biocareersource.com.";
$headers = 'From: webmaster@biocareersource.com' . "\r\n" . 'Reply-To: webmaster@yourdomain.co.uk' . "\r\n" . 'X-Mailer: PHP/' . phpversion();
mail($email, $subject, $message, $headers);
echo "You`ve recommended our site to: $email Thanks you";
}
?>
// Please dont remove the following Links. They are there to keep our scripts free ?>
iTell
|