我的联系表格没有发送任何电子邮件

时间:2017-03-10 10:59:18

标签: php html forms contact

我正在自己的vCard /简历网站上工作。 但是我的.php文件和联系表单有问题。

我试图调试它,但我没有成功。

这是我在html中的表单

<!-- form -->
<form name="contactForm" id="contactForm" method="post" action="inc/sendEmail.php">
    <fieldset>
        <div class="form-field">
            <input name="contactName" type="text" id="contactName" placeholder="Name" value="" minlength="2" required>
        </div>
        <div class="form-field">
            <input name="contactEmail" type="email" id="contactEmail" placeholder="Email" value="" required>
        </div>
        <div class="form-field">
            <input name="contactSubject" type="text" id="contactSubject" placeholder="Subject" value="">
        </div>
        <div class="form-field">
            <textarea name="contactMessage" id="contactMessage" placeholder="Message" rows="10" cols="50" required></textarea>
        </div>
        <div class="form-field">
            <button class="submitform">Submit</button>
            <div id="submit-loader">
                <div class="text-loader">
                    Sending...
                </div>
                <div class="s-loader">
                    <div class="bounce1">
                    </div>
                    <div class="bounce2">
                    </div>
                    <div class="bounce3">
                    </div>
                </div>
            </div>
        </div>
    </fieldset>
</form> 
<!-- Form End -->

我的php文件

<?php
// Replace this with your own email address
$siteOwnersEmail = 'someone@example.com';
if($_POST) {
    $name = trim(stripslashes($_POST['contactName']));
    $email = trim(stripslashes($_POST['contactEmail']));
    $subject = trim(stripslashes($_POST['contactSubject']));
    $contact_message = trim(stripslashes($_POST['contactMessage']));
    // Check Name
    if (strlen($name) < 2) {
        $error['name'] = "Please enter your name.";
    }
    // Check Email
    if (!preg_match('/^[a-z0-9&\'\.\-_\+]+@[a-z0-9\-]+\.([a-z0-9\-]+\.)*+[a-z]{2}/is', $email)) {
        $error['email'] = "Please enter a valid email address.";
    }
    // Check Message
    if (strlen($contact_message) < 15) {
        $error['message'] = "Please enter your message. It should have at least 15 characters.";
    }
    // Subject
    if ($subject == '') { $subject = "Contact Form Submission"; }
    // Set Message
    $message .= "Email from: " . $name . "<br />";
    $message .= "Email address: " . $email . "<br />";
    $message .= "Message: <br />";
    $message .= $contact_message;
    $message .= "<br /> ----- <br /> This email was sent from your site's contact form. <br />";
    // Set From: header
    $from =  $name . " <" . $email . ">";
    // Email Headers
    $headers = "From: " . $from . "\r\n";
    $headers .= "Reply-To: ". $email . "\r\n";
    $headers .= "MIME-Version: 1.0\r\n";
    $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n";
    if (!$error) {
        ini_set("sendmail_from", $siteOwnersEmail); // for windows server
        $mail = mail($siteOwnersEmail, $subject, $message, $headers);
        if ($mail) { echo "OK"; }
        else { echo "Something went wrong. Please try again."; }
    } # end if - no validation error
    else {
        $response = (isset($error['name'])) ? $error['name'] . "<br /> \n" : null;
        $response .= (isset($error['email'])) ? $error['email'] . "<br /> \n" : null;
        $response .= (isset($error['message'])) ? $error['message'] . "<br />" : null;
        echo $response;
    } # end if - there was a validation error
}
?>

有人可以告诉我这里做错了什么,因为它不会发送任何电子邮件。

2 个答案:

答案 0 :(得分:0)

您必须声明按钮类型type="submit"type="button" 在这种情况下使用表单,因此您必须添加type="submit"

并检查用户点击按钮或直接访问文件,您可以使用if

检查!empty($_POST)
// Change in your HTML
<button class="submitform">Submit</button>
// to
<button type="submit" class="submitform">Submit</button>

//Change in your PHP
if($_POST)
// to
if(!empty($_POST))

答案 1 :(得分:0)

请试试这个

<?php
$message ="";
if(isset($_POST)){
    mail(to,subject,message,headers,parameters);
}
?>