i have a folder name php contains file name index.html on my desktop and i have install xampp in my C://xampp folder .Plz tell me how to structure php folder index.html contains this code. But this code not sending email .is there any problem in my folder structure php
<!Doctype html>
<html>
<head>
<title>My email Page</title>
</head>
<body>
<div>
<?php
$email = "example@yahoo.com";
$subject = "hope this works";
$body = "i think all is well";
$header = "from Ali@yahoo.com";
mail($email , $subject, $body $header);
echo "ok all well";
?>
</div>
</body>
</html>