指定されたものに電子メールを送信することになっているphpスクリプトに送信する、以下のような非常に単純な連絡フォームがあります。しかし、私の受信トレイには何も表示されません。遅れているだけかと思いましたが、何も表示されずに約3時間経過しました!
お問い合わせフォーム
<form name="contactform" id="contactForm" method="post" action="assets/send_form_email.php">
<fieldset>
<label for="name">Your Name</label>
<input type="text" name="name" id="name" class="text ui-widget-content ui-corner-all" />
<label for="email">Email</label>
<input type="text" name="email" id="email" class="text ui-widget-content ui-corner-all" />
<label for="question">Question/Comment</label>
<textarea name="question" id="question" class="text ui-widget-content ui-corner-all" style="margin: 0px 0px 10px; width: 303px; height: 54px;"></textarea>
</fieldset>
</form>
* PHP スクリプト *
<? php
if (isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "";
$email_subject = "New Contact Form | Website";
echo $_POST['email'];
echo $_POST['name'];
echo $_POST['question'];
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}
// validation expected data exists
if (!isset($_POST['name']) || !isset($_POST['email']) || !isset($_POST['question'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$name = $_POST['name']; // required
$email_from = $_POST['email']; // required
$question = $_POST['question'];
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if (!preg_match($email_exp, $email_from)) {
$error_message. = 'The Email Address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if (!preg_match($string_exp, $name)) {
$error_message. = 'The Name you entered does not appear to be valid.<br />';
}
if (strlen($question) < 5) {
$error_message. = 'The Comments you entered do not appear to be valid.<br />';
}
if (strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Form details below.\n\n";
function clean_string($string) {
$bad = array("content-type", "bcc:", "to:", "cc:", "href");
return str_replace($bad, "", $string);
}
$email_message. = "Name: ".clean_string($name)."\n";
$email_message. = "Email: ".clean_string($email_from)."\n";
$email_message. = "Question/Comment: ".clean_string($question)."\n";
// create email headers
$headers = 'From: '.$email_from."\r\n".'Reply-To: '.$email_from."\r\n".'X-Mailer: PHP/'.phpversion();@mail($email_to, $email_subject, $email_message, $headers); ?>
<!--
include your own success html here -->
Thank you
for contacting us.We will be in touch with you very soon. <? php
} ?>
それを修正するコードの何が問題なのか、本当にわかりません。誰か助けてください。