【问题标题】:I want my PHP email code to redirect to a page once its done我希望我的 PHP 电子邮件代码在完成后重定向到一个页面
【发布时间】:2012-12-06 22:33:34
【问题描述】:

我有一个运行良好的 PHP 电子邮件脚本,但理想情况下我想要的不是一条消息:

感谢您联系 CF Racing F3,我们会尽快与您联系。

我希望它重定向到一个 url,这是代码:

<?php
if(isset($_POST['email'])) {
    // EDIT THE 2 LINES BELOW AS REQUIRED
    $email_to = "number8pie@gmail.com";
    $email_subject = "CFR F3 Contact Form";


    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['message'])) {
        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
    $message = $_POST['message']; // 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($message) < 2) {
    $error_message .= 'The Message 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 .= "Message: ".clean_string($message)."\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);  
?>

Thank you for contacting CF Racing F3, we will be in touch with you very soon.

<?php
?>

提前感谢您的帮助。

【问题讨论】:

    标签: php


    【解决方案1】:

    通过改变这个来做一个标头重定向:

    ?>
    
    Thank you for contacting CF Racing F3, we will be in touch with you very soon.
    
    <?php
    ?>
    

    到这里:

    header( "Location: http://www.example.com/email_done.php");
    

    【讨论】:

      【解决方案2】:

      您需要使用以下语句:

      header("Location: http://www.test.com/test.php");
      

      确保在此行之前不输出或打印任何内容。

      【讨论】:

        【解决方案3】:

        如果您想在发送电子邮件后重定向,那么您可以使用

        if(mail($email_to, $email_subject, $email_message, $headers)){
        header( "Location: http://www.example.com/email_success.php");
        }
        

        并在 email_success.php 中添加消息

        Thank you for contacting CF Racing F3, we will be in touch with you very soon.
        

        【讨论】:

          【解决方案4】:

          邮件发送成功后,使用它重定向到另一个页面:

          if (mail($email_to, $email_subject, $email_message, $headers)) {
              header("Location: http://your_domain.com/your_page.php");
          }
          

          【讨论】:

            猜你喜欢
            • 1970-01-01
            • 2014-05-20
            • 2013-11-14
            • 1970-01-01
            • 2013-11-07
            • 1970-01-01
            • 2013-10-20
            • 1970-01-01
            • 1970-01-01
            相关资源
            最近更新 更多