我有一個文件夾名稱php在我的桌面上包含文件名index.html,我已經在我的C:// xampp文件夾中安裝xampp .Plz告訴我如何構建php文件夾 index.html包含此代碼。但此代碼不發送電子郵件。在我的文件夾結構中有任何問題phpPHP郵件沒有發送爲什麼?
<!Doctype html>
<html>
<head>
<title>My email Page</title>
</head>
<body>
<div>
<?php
$email = "[email protected]";
$subject = "hope this works";
$body = "i think all is well";
$header = "from [email protected]";
mail($email , $subject, $body $header);
echo "ok all well";
?>
</div>
</body>
</html>
仔細檢查您的郵件() – Rhopercy
您必須瞭解html和php的區別。它不是一樣的,PHP必須由你的http服務器專門處理。請在網上搜索一些關於php的基本介紹。 Ther很豐富,並且在這裏複製所有內容是毫無意義的。 – arkascha
你是否設置了php.ini文件。如果沒有,請通過 –