PHP电子邮件表单代码未通过电子邮件发送

时间:2016-07-02 00:34:38

标签: php html forms

我不确定为什么这不会去任何地方。我的设置与此帖子中的代码完全相同:Send email with PHP from html form on submit with the same script

我更改了电子邮件地址,但它仍然没有发送给我。我错过了什么吗?提前谢谢!

请帮忙!

<?php 
if(isset($_POST['submit'])){
$to = "email@example.com"; // this is your Email address
$from = $_POST['email']; // this is the sender's Email address
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$subject = "Form submission";
$subject2 = "Copy of your form submission";
$message = $first_name . " " . $last_name . " wrote the following:" . "\n\n" . $_POST['message'];
$message2 = "Here is a copy of your message " . $first_name . "\n\n" . $_POST['message'];

$headers = "From:" . $from;
$headers2 = "From:" . $to;
mail($to,$subject,$message,$headers);
mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender
echo "Mail Sent. Thank you " . $first_name . ", we will contact you shortly.";
// You can also use header('Location: thank_you.php'); to redirect to another page.
}
?>

<form action="" method="post">
First Name: <input type="text" name="first_name"><br>
Last Name: <input type="text" name="last_name"><br>
Email: <input type="text" name="email"><br>
Message:<br><textarea rows="5" name="message" cols="30"></textarea><br>
<input type="submit" name="submit" value="Submit">
</form>

1 个答案:

答案 0 :(得分:1)

您很可能需要设置邮件服务器:

你收到了吗?

  

警告:mail():无法连接到“localhost”端口的邮件服务器   25,验证php.ini中的“SMTP”和“smtp_port”设置

使用项目比使用PHPmailer更容易。