http://makeupbysherry.com/contact.php
使用php的联系表单似乎没有工作,也没有从表单收到电子邮件。我尝试了几个不同的电子邮件,主机在网络解决方案上。我在GoDaddy的测试服务器上安装了这个站点,现在它不适用于Netsol。
不确定是什么问题,这个网站今天早上从windows转移到unix主机上,除了这个之外似乎已启动并运行。知道发生了什么事吗?谢谢!
布赖恩
更新
<?php
/* Set e-mail recipient */
$myemail = "bryan@bryankremkau.com";
/* Check all form inputs using check_input function */
$name = check_input($_POST['name'], "Enter your name");
$email = check_input($_POST['email']);
$subject = check_input($_POST['subject'], "Write a subject");
$message = check_input($_POST['message'], "Write your message");
$check .= implode(', ', $_POST['check']);
/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("E-mail address not valid");
}
/* If URL is not valid set $website to empty */
if (!preg_match("/^(https?:\/\/+[\w\-]+\.[\w\-]+)/i", $website))
{
$website = '';
}
/* Let's prepare the message for the e-mail */
$message = "Hello!
Your contact form has been submitted by:
Name: $name
E-mail: $email
Subject: $subject
Message: $message
Description: $check
End of message
";
/* Send the message using mail() function */
mail($myemail, $subject, $message);
/* Redirect visitor to the thank you page */
header('Location: thanks.php');
exit();
/* Functions we used */
function check_input($data, $problem='')
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
show_error($problem);
}
return $data;
}
function show_error($myError)
{
?>
<html>
<body>
<b>Please correct the following error:</b><br />
<?php echo $myError; ?>
</body>
</html>
<?php
exit();
}
?>
答案 0 :(得分:2)
在Unix上,PHP使用sendmail发送电子邮件。
由于您使用的是Unix系统,因此您需要在php.ini文件中设置sendmail_path
,并确保安装了sendmail。
在cgi-bin目录中创建一个名为php.ini的新文件,其中包含一行:
sendmail path = /usr/sbin/sendmail
答案 1 :(得分:0)
您通常需要使用SMTP连接详细信息配置PHP联系表单。通常需要用户名和密码以及SMTP服务器名称,以便脚本在发送电子邮件之前进行身份验证。这可以防止垃圾邮件发送者使用邮件服务器。