用PHP发送邮件问题

时间:2017-10-23 10:05:47

标签: php

我刚试过用php发送邮件。没有错误消息并且还显示成功消息。但是没有邮件应该收到收据邮件。

以下是代码:

<?php 
if(isset($_POST['submit'])){
    $to = "xxxxxxxxxx@gmail.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.
    }
?>
<!DOCTYPE html>
<head>
<title>Form submission</title>
</head>
<body>

<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>

</body>
</html> 

好吧,我在localhost

中运行它

2 个答案:

答案 0 :(得分:0)

使用您的电子邮件,您检查垃圾/垃圾邮件文件夹,因为您从未注册的域名(localhost)发送邮件,我会触发Gmail垃圾邮件过滤器。也可以尝试将CC发送到临时邮件地址。

你能提供你正在使用的smtp服务器或xamp或wamp等包......

答案 1 :(得分:0)

您是否有邮件传输代理(MTA),或者如果您愿意,是否安装/配置了SMTP服务?否则,您无法从本地主机发送电子邮件。