0

contact.php フォームに問題があります。断続的に動作しているようで、何が間違っているのかわかりません。

ホスティングはGoDaddyを使用しており、次を追加するように言われましたが、relay-hosting.secureserver.netがどこにあるのかわかりません

これらのいずれかを構築するためのヘルプまたは参照は非常に役立ちます。現在のコードは以下です。

<?php
 if(isset($_POST['email'])) {

// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "info@resonatebusiness.com";
$email_subject = "NEW WEBSITE INQUIRY";


$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 .= "First Name: ".clean_string($full_name)."\n";
$email_message .= "Last Name: ".clean_string($email)."\n";
$email_message .= "Email: ".clean_string($email)."\n";
$email_message .= "Telephone: ".clean_string($subject)."\n";
$email_message .= "Comments: ".clean_string($message)."\n";


$headers = 'From: '.$email_from."\r\n".
 'Reply-To: '.$email_from."\r\n" .
  'X-Mailer: PHP/' . phpversion();
  @mail($email_to, $email_subject, $email_message, $headers);  
  header("Location: http://www.publishingpush.com");
  exit;
  ?>
4

2 に答える 2

2

メールが送信される前にフォームをリダイレクトしています。メール機能の実行が成功した後にのみリダイレクトします。

if( mail($email_to, $email_subject, $email_message, $headers) ){
 //redirect
}
于 2013-07-25T14:27:50.053 に答える
0

以下のコードを試して、サーバーが情報を適切にトラップして電子メールに送信しているかどうかを最初に確認してください -

ps thankyou.htmlリダイレクト ページの場所を、フォーム送信後のリダイレクト ランディング ページに変更します。 これが機能する場合は、必要な情報をフィルタリングして事前に修飾するように php を微調整するだけです。

<?php
/* Set e-mail recipient */
$myemail  = 'info@resonatebusiness.com'; 

/* Check all form inputs using check_input function */
$name = check_input($_POST['full_name']);
$lname = check_input($_POST['last_name']);
$email = check_input($_POST['email']);
$subject = check_input($_POST['subject']);
$spec_message = check_input($_POST['message']); 


/*E-mail Subject */
$subject = 'NEW WEBSITE INQUIRY' ;

/*From Address */
$headers = "From: $name $lname";

/* Let's prepare the message for the e-mail */
$message = "
Name: $name, $lname
E-mail: $email
Subject: $subject
Message: $spec_message
" ;

/* Send the message using mail() function */
mail($myemail, $subject, $message, $headers);

/* Redirect visitor to the thank you page */
header('Location: thankyou.html');
exit();

?>
于 2014-12-15T06:29:38.700 に答える