联系表单不适用于“提交”


Contact form doesn't work on Submit

我不确定为什么我的联系人不起作用。它不会向我的电子邮件地址提交和发送数据。在实时 http://www.arif-khan.net/project/chuck/ContactUs.html 上检查它

查看 HTML 代码-

<form id="contact-form" action="sendmail.php" method="POST" >                       
                    <div class="success">Contact form submitted!<br>
                        <strong>We will be in touch soon.</strong>
                    </div>                      
                    <fieldset>
                        <label class="name">
                            <input name="name" type="text" value="Name:">
                            <span class="error">*This is not a valid name.</span> 
                            <span class="empty">*This field is required.</span>
                        </label>
                        <label class="email">
                            <input name="email" type="email" value="Email:">
                            <span class="error">*This is not a valid email address.</span> 
                            <span class="empty">*This field is required.</span>
                        </label>
                        <label class="phone">
                            <input name="contact" type="tel" value="Phone:">
                            <span class="error">*This is not a valid phone number.</span> 
                            <span class="empty">*This field is required.</span>
                        </label>
                        <label class="message">
                            <textarea name="message">Message:</textarea>
                            <span class="error">*The message is too short.</span> 
                            <span class="empty">*This field is required.</span>
                        </label>
                        <div class="form_buttons">
                            <input type="submit" class="btn-1" value="submit" style="border:0px;">
                            <!--a href="#" id="submit" class="btn-1 submit" data-type="submit">submit</a-->
                            <a href="#" class="btn-1" data-type="reset">Clear</a>
                            <input id="contact-form" type="hidden" name="contact-form" type="submit"/>
                        </div>
                    </fieldset>
                </form>         

查看PHP代码-

<?php
$name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];
$contact = $_POST['contact'];
$to = "arifkpi@gmail.com";
$content = 'Customer Request From Pennant Staffing';
$body_message = '---------- Customer Details ---------- '."'r'n'r'n";
$body_message .= 'Name: '. $name."'r'n'r'n";
$body_message .= 'E-mail: ' . $email ."'r'n'r'n";
$body_message .= 'Contact: ' . $contact."'r'n'r'n";
$body_message .= 'Message: ' . $message."'r'n'r'n";
$headers = "From:$name<$email> 'r'n"; 
$headers .= "Reply-To: $email 'r'n"; 
mail($to, $content, $body_message, $headers);
?>
<script language="javascript" type="text/javascript">
window.location = 'ContactUs.html';
</script>

试试这个:

$headers  = "MIME-Version: 1.0'r'n";
$headers .= "Content-type: text/html; charset=UTF-8'r'n";
$headers .= "From:$name<$email> 'r'n"; 
$headers .= "Reply-To: $email 'r'n";
mail($to, $content, $body_message, $headers);

要在本地主机上检查邮件,您可以使用"测试邮件服务器工具"

您需要进入用于此项目的 php.ini 文件并搜索

[mail function]

并设置 SMTP 服务器的变量。