我正在尝试通过此引导程序模板创建PHP联系表单: https://startbootstrap.com/template-overviews/agency/
此模板正在我的本地主机中查找,电子邮件正确发送,我收到了电子邮件。
但是当我在自己的网站上使用他们的代码时,它总是说电子邮件正确发送,但我从未收到电子邮件
以下是代码
HTML:
<!-- contact form begin -->
<span id="form-title">Let's Get In Touch</span>
<div class="form-group">
<input class="input-style1 form-control" id="name" type="text" placeholder="Your Name *" required data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="input-style1 form-control" id="email" type="email" placeholder="Your Email *" required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input class="input-style1 form-control" id="phone" type="tel" placeholder="Your Phone *" required data-validation-required-message="Please enter your phone number.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<textarea rows="5" class="form-control input-style2" id="message" placeholder="Your Message *" required data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
<div class="clearfix"></div>
<div class="text-center">
<div id="success"></div>
<button id="sendMessageButton" class="btn btn-xl" type="submit">Send Message</button>
</div>
<!-- contact form ends -->
contact_me.js
$(function() {
$("#contactForm input,#contactForm textarea").jqBootstrapValidation({
preventSubmit: true,
submitError: function($form, event, errors) {
// additional error messages or events
},
submitSuccess: function($form, event) {
event.preventDefault(); // prevent default submit behaviour
// get values from FORM
var name = $("input#name").val();
var email = $("input#email").val();
var phone = $("input#phone").val();
var message = $("textarea#message").val();
var firstName = name; // For Success/Failure Message
// Check for white space in name for Success/Fail message
if (firstName.indexOf(' ') >= 0) {
firstName = name.split(' ').slice(0, -1).join(' ');
}
$this = $("#sendMessageButton");
$this.prop("disabled", true); // Disable submit button until AJAX call is complete to prevent duplicate messages
$.ajax({
url: "././mail/contact_me.php",
type: "POST",
data: {
name: name,
phone: phone,
email: email,
message: message
},
cache: false,
success: function() {
// Success message
$('#success').html("<div class='alert alert-success'>");
$('#success > .alert-success').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×")
.append("</button>");
$('#success > .alert-success')
.append("<strong>Your message has been sent. </strong>");
$('#success > .alert-success')
.append('</div>');
//clear all fields
$('#contactForm').trigger("reset");
},
error: function() {
// Fail message
$('#success').html("<div class='alert alert-danger'>");
$('#success > .alert-danger').html("<button type='button' class='close' data-dismiss='alert' aria-hidden='true'>×")
.append("</button>");
$('#success > .alert-danger').append($("<strong>").text("Sorry " + firstName + ", it seems that my mail server is not responding. Please try again later!"));
$('#success > .alert-danger').append('</div>');
//clear all fields
$('#contactForm').trigger("reset");
},
complete: function() {
setTimeout(function() {
$this.prop("disabled", false); // Re-enable submit button when AJAX call is complete
}, 1000);
}
});
},
filter: function() {
return $(this).is(":visible");
},
});
$("a[data-toggle=\"tab\"]").click(function(e) {
e.preventDefault();
$(this).tab("show");
});
});
/*When clicking on Full hide fail/success boxes */
$('#name').focus(function() {
$('#success').html('');
});
PHP
<?php
// 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 = strip_tags(htmlspecialchars($_POST['name']));
$email_address = strip_tags(htmlspecialchars($_POST['email']));
$phone = strip_tags(htmlspecialchars($_POST['phone']));
$message = strip_tags(htmlspecialchars($_POST['message']));
// Create the email and send the message
$to = 'yourname@yourdomain.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 your website contact form.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message";
$headers = "From: noreply@yourdomain.com\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;
?>
我想知道我是否需要任何配置或其他东西才能使mail()功能在我自己的网站上运行
答案 0 :(得分:1)
以下是我首先要看的区域:
错误处理
目前,无论调用是什么,脚本都会在邮件调用后返回TRUE
。 mail()
方法本身在失败时返回false,在失败时返回there are ways to check the errors it might be throwing。您的$.ajax
处理程序始终将该呼叫视为“成功” - 因为该呼叫将始终返回TRUE
。将mail
调用分配给自己的变量可能更好:
$mail_succeeded = mail($to, $email_subject, $email_body, $headers);
return $mail_succeeded;
如果mail
实际运作,这将告诉您。上面的链接提供了如何使用它来获取相关错误消息的示例。
相对路径
您是否仔细检查过您的相对路径是否正确构建,以便按照Web服务器的预期进行处理?这可能不是问题,但././mail/contact_me.php
引起了我的注意。
(From a question regarding relative paths)
路径段“
.
”和“..
”,也称为点段, 为路径名称层次结构中的相对引用定义。他们 旨在用于相对路径引用的开头 (Section 4.2)表示层次结构中的相对位置 名字树。这类似于他们在某些操作中的作用 系统的文件目录结构,用于指示当前目录 和父目录。但是,与文件系统不同, 这些点段仅在URI路径层次结构中解释 并作为解决过程的一部分被删除(Section 5.2)。
服务器上的邮件设置
从您正在使用的主题的文档:
如果您在联系表单上遇到问题,请务必遵循 这些步骤:
首先确保您的网站托管在启用了PHP的网络服务器上。单击提交按钮时,将显示PHP脚本 contact_me.php运行。如果您尝试在本地使用该表单,那么 消息不会发送,除非您在您的服务器上设置了服务器环境 本地机器。
- 醇>
如果您已将网站上传到网络服务器且表单仍未发送,则可能存在权限/安全问题 阻止表单发送电子邮件。首先确保电子邮件 您发送邮件的地址是正确的。如果是正确的,请尝试 使用具有私有域的电子邮件地址,而不是某些东西 像Gmail或雅虎一样流行。许多Web主机阻止表单 发送到热门邮件服务器以用于垃圾邮件。如果还没有 更改电子邮件地址后,请联系您的网络托管服务商查看 如果他们能弄清楚阻止表格发送的原因。
除此之外,您还需要确保在php.ini
文件中正确定义并设置了电子邮件设置。
您的主机可能会在可配置性方面限制您的选项,但here is a brief tutorial会对此进行设置。
检查您的PHP错误日志,确保您在设置中没有遗漏任何阻止电子邮件发送的简单内容。
最后,我建议您避免使用PHP的mail()
方法发送电子邮件。有several well known exploits使mail()
成为发送电子邮件的潜在不安全方式。您可以在服务器上轻松实现其他选项,以避免mail()
的限制和漏洞。