個人の Ubuntu LAMP サーバーで Web サイトをホストしています。お問い合わせフォーム以外はすべて機能しています。gmail smtp を介してメールをリレーするように Postfix を設定しましたが、うまく機能しています。サーバーがメールを送信していることはわかっています。さまざまなアドレスに対して、次のコードを使用してこれを数回確認しました。
echo "Test mail from postfix" | mail -s "Test Postfix" you@example.com
小さな PHP ファイル「test.php」を作成し、/var/www ディレクトリに保存して、PHP が動作していることも確認しました。次に、ブラウザーにhttp://www.mywebsite.com/test.phpと入力してファイルを呼び出します。送信先アドレスに関係なく、常に機能します。
したがって、サーバーがメールを送信し、PHP が機能していることを知っていると、お問い合わせフォームで送信ボタンがクリックされたときの PHP ファイルの呼び出しに関連するコードまたは問題が発生する可能性があります。
お問い合わせフォームのHTMLコードは次のとおりです。
<form method="post" name="contact" action="mail.php">
<input type="hidden" name="post" value="Send" />
<label for="name">Name:</label> <input type="text" id="name" name="name" class="required input_field" />
<label for="email">Email Address:</label> <input type="text" id="email" name="email" class="validate-email required input_field" />
<label for="url">Phone:</label> <input type="text" name="url" id="url" class="input_field" />
<label for="text">Message:</label> <textarea id="text" name="text" rows="0" cols="0" class="required"></textarea>
<input style="font-weight: bold;" type="submit" class="submit_btn" name="submit" id="submit" value="Send" />
<input style="font-weight: bold;" type="reset" class="submit_btn" name="reset" id="reset" value="Reset" />
</form>
明らかに、このコードはページ内に設定されており、一致する CSS があります。
PHPファイル「mail.php」は次のとおりです。
<?php
if(isset($_POST['email'])) {
// CHANGE THE TWO LINES BELOW
$email_to = "tljefam@gmail.com";
$email_subject = "OYH Tech Website Email";
function died($error) {
// error code
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['author']) ||
!isset($_POST['email']) ||
!isset($_POST['url']) ||
!isset($_POST['text'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$name = $_POST['author']; // required
$email_from = $_POST['email']; // required
$url = $_POST['url']; // not required
$text = $_POST['text']; // required
$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($text) < 2) {
$error_message .= 'The message you entered does 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 .= "Phone: ".clean_string($url)."\n";
$email_message .= "Message: ".clean_string($text)."\n";
// email headers
$headers = 'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($email_to, $email_subject, $email_message, $headers);
?>
連絡先フォームで [送信] をクリックすると、空白のページが読み込まれ、それだけです。エラー コードやメッセージは一切表示されず、さらに重要なことに、メールが配信されませんでした。一部のブラウザーでは、次のメッセージが表示されます。 http://www.mywebsite.com/mail.phpの取得中に Web サイトでエラーが発生しました。メンテナンスのために停止しているか、正しく構成されていない可能性があります。
明確にするために、私はこの連絡先フォームが私の gmail アドレスに電子メールを送信することだけを望んでいます。このサーバーでメールを受信しません。
どんな助けでも大歓迎です。私はこれに4日間絶えず取り組んできました。