Wordpress自定义表单,提交后加载错误的模板,不发送邮件

时间:2018-09-23 08:47:24

标签: php wordpress contact-form

我正在尝试为Wordpress网站构建一个简单的联系表。我希望它发送电子邮件并重新加载发送错误和成功消息的联系人页面。

我已经安装了WP邮件SMTP,它会发送测试电子邮件。

现在有问题了。我有一个要使用的HTML表单。此表单已放入自定义模板中。

php是从我在网上找到的指南中借用的,我已经使用了其中的一些指南。他们都没有为我工作。当我点击“提交”按钮时,页面会加载基本模板(不是我用于表单页面的自定义模板),并且不会发送邮件。我希望它加载相同的页面,但有一个错误/成功的div告诉我发生了什么。如果我在按下提交之前运行php,则会显示错误消息。

这是我的php:     

if(isset($_POST['submitButton'])){
    //response generation function
    $response = "";

    //function to generate response
    function my_contact_form_generate_response($type, $reason){

      global $response;

      if($type == "success") $response = "<div class='success'>{$reason}</div>";
      else $response = "<div class='error'>{$reason}</div>";

    }

    //response messages
    $not_human       = "Human verification incorrect.";
    $missing_content = "Please supply all information.";
    $email_invalid   = "Email Address Invalid.";
    $message_unsent  = "Message was not sent. Try Again.";
    $message_sent    = "Thanks! Your message has been sent.";

    //user posted variables
    $name = $_POST['name'];
    $email = $_POST['email'];
    $message = $_POST['message'];
    $phone = $_POST['phone'];
    $human = 2;

    //php mailer variables
    $to = get_option('admin_email');
    $subject = "Someone sent a message from ".get_bloginfo('name');
    $headers = 'From: '. $email . "\r\n" .
      'Reply-To: ' . $email . "\r\n";



        if(!$human == 0){
        if($human != 2) my_contact_form_generate_response("error", $not_human); //not human!
        else {

            //validate email
            if(!filter_var($email, FILTER_VALIDATE_EMAIL))
            my_contact_form_generate_response("error", $email_invalid);
            else //email is valid
            {
            //validate presence of name and message
            if(empty($name) || empty($message)){
                my_contact_form_generate_response("error", $missing_content);
            }
            else //ready to go!
            {
                $sent = mail($to, $subject, strip_tags($message), 
$headers);
            if($sent) my_contact_form_generate_response("success", 
$message_sent); //message sent!
            else my_contact_form_generate_response("error", 
$message_unsent); //message wasn't sent
            }
            }
        }
        }

    else if ($_POST['submitted']) 
my_contact_form_generate_response("error", $missing_content);
    }
?>

这是我的“打印错误/成功”和格式的html:

<?php echo $response; ?>
<form class="interest-form" action="<?php the_permalink(); ?>" method="POST">
    <fieldset>
        <legend>Anmäl Intresse:</legend>
        <div class="row">
            <div class="col-6">
                <input type="text" class="form-control" placeholder="Namn" name="name" value="<?php echo esc_attr($_POST['name']); ?>">
            </div>
            <div class="col-6">
                <input type="tel" class="form-control" placeholder="Telefonnummer" name="phone" value="<?php echo esc_attr($_POST['phone']); ?>">
            </div>
        </div>
        <div class="row">
            <div class="col">
                <input type="email" class="form-control" placeholder="E-post" name="email" value="<?php echo esc_attr($_POST['email']); ?>">
            </div>
            <div class="col">
                <input class="form-control" type="text" placeholder="<?php the_field('fb_8_1_plats'); ?> <?php the_field('fb_8_1_startdatum'); ?>" readonly name="plats_datum">
            </div>
        </div>
        <div class="row">
            <div class="col">
                <div class="form-group">
                    <label for="meddelande1">Meddelande:</label>
                    <textarea class="form-control" rows="3" name="message" value="<?php echo esc_attr($_POST['message']); ?>" id="meddelande1"></textarea>
                </div>
            </div>
        </div>
        <input type="hidden" name="submitted" value="1">
        <button type="submit" name="submitButton" class="btn btn-primary float-right">Skicka intresseanmälan</button>
    </fieldset>
</form>

我真的不知道出什么问题了,我花了整整两天的时间在上周末进行谷歌搜索,尝试和失败。之后,我放弃了,一个星期都没有看。请帮忙!

编辑:它不会加载index.php,路径仍然相同,但是它使用index.php的模板

0 个答案:

没有答案