我在我的網站上創建了一個讓其他人與我聯繫的表單。我使用PHP腳本來發送電子郵件,但我總是得到錯誤:以HTML和PHP格式發送電子郵件不能正常工作
此XML文件似乎沒有任何與其關聯的樣式信息。文檔樹如下所示。
我用這個代碼:
<form method="post" action="contact.php" enctype="text/plain">
Name*:<br>
<input type="text" name="name" placeholder='Steve'><br>
E-mail*:<br>
<input type="text" name="mail" placeholder='[email protected]'><br>
Comment*:<br>
<textarea name="comments" maxlength="400" cols="25" rows="6">
This site is awesome!
</textarea>
<br> <br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
HTML和這個:
<?php
if($_POST["message"]) {
mail("[email protected]", "MCPEmaps Comment", $_POST["message"], "From: [email protected]");
}
?>
在PHP文件。
任何幫助?
您可以顯示錯誤消息 – Shibon
有U試圖在它的服務器或本地主機 – Shibon
你我以前不從形式 – Nawin