Hello friends i'm new in php programming,
i'm using wampserver with php5.3.5 , but it shows error on this code
<?php
$to = "bkstha2010@gmail.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonels@example.com";
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
as well as while executing html combined code.
Can someone help me?