我的联系表单工作正常但在我将收件人设置为Gmail帐户时将所有内容发送到垃圾邮件,如果我将其设置为我的域电子邮件客户端(例如info@mydomain.com)则不发送任何内容。代码中有什么问题吗?我需要做什么?
<?php $name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];
$formcontent="From: $name \n Message: $message";
$recipient = "info@mydomain.com";
$subject = "Contact Form";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
header('Location: message-sent.html#contact'); exit();
?>
第二个问题。我设置了位置以将用户重定向到感谢页面。如何将其设置为在新标签中打开?