我一直试图让我的Bootstrap php表单在过去几个小时内工作。我检查了答案并尝试按照解决方案here,here和here无效。
我的contact_me.php如下:
<?php
// Check for errors
error_reporting(E_ALL);
ini_set('display_errors', 1);
// Check for empty fields
if(empty($_POST['name']) ||
empty($_POST['email']) ||
empty($_POST['phone']) ||
empty($_POST['message']) ||
!filter_var($_POST['email'],FILTER_VALIDATE_EMAIL))
{
echo "No arguments Provided!";
return false;
}
$name = $_POST['name'];
$email_address = $_POST['email'];
$phone = $_POST['phone'];
$message = $_POST['message'];
// Create the email and send the message
$to = 'myemail@gmail.com'; // Add your email address inbetween the '' replacing yourname@yourdomain.com - This is where the form will send a message to.
$email_subject = "Website Contact Form: $name";
$email_body = "You have received a new message from a visitor to your site.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message";
$headers = "From: noreply@yourdomain.co.uk\n"; // This is the email address the generated message will be from. We recommend using something like noreply@yourdomain.com.
$headers .= "Reply-To: $email_address";
mail($to,$email_subject,$email_body,$headers);
return true;
?>
提交表单会收到“您的邮件已发送”。但是我没有收到任何电子邮件......
有什么想法吗?
(mytest@gmail.com和noreply@yourdomain.com不是真正的电子邮件地址,显然是嘿)