Showing posts with label E-Mail. Show all posts
Showing posts with label E-Mail. Show all posts

Sunday 15 July 2012

PHP E-Mail


E-Mail Function

<?php
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>