0

嘿,我有一个基本的联系表格正在提交,但没有收到任何东西。

如果成功,我已将表单设置为加载模板,它确实如此。

下面的代码是我的表单代码

        <form name="form1" method="post" action="send_contact.php">
            <input name="name" placeholder="Name" type="text" id="name" >
            <input name="customer_mail" placeholder="Email" type="text" id="customer_mail">
            <textarea name="detail" placeholder="Message" id="detail"></textarea>
            <input type="submit" class="button" name="Submit" value="Submit">
            <input type="reset" class="button" name="Submit2" value="Reset">
        </form>

这个页面是我的提交页面

 <?php

 //Include the common file
 require_once('common.php');

 // Details
 $message="$detail";

 // Mail of sender
 $mail_from="$customer_mail"; 

 // From 
 $header="from: $name <$mail_from>";

 // Enter your email address
 $to ='EMAIL ADDRESS REMOVED';
 $send_contact=mail($to,$subject,$message,$header);

// If message sent..
if($send_contact){

//Display the template
$tpl->display('send-contact');
}
else {
echo "ERROR";
}           

?>

我已经尝试将它发送到两个不同的电子邮件地址并从两个不同的电子邮件地址发送并检查电子邮件地址本身的任何过滤器,但我仍然无法发送我的联系表。

任何人都可以对此有所了解吗?

谢谢

4

0 回答 0