嘿,我有一个提交的基本联系表格,但没有收到任何内容。
如果成功,我已将表单设置为加载模板。
以下代码是我的表单代码
<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";
}
?>
我已尝试将其发送到两个不同的电子邮件地址,并检查电子邮件地址本身的任何过滤器,但我仍然无法发送我的联系表单。
任何人都可以对此有所了解吗?
由于