PHP不发送邮件

时间:2015-10-02 16:45:44

标签: php

我正在使用XAMPP,我想向我的一个电子邮件地址发送电子邮件,但似乎没有达到它。我能做什么 ? HTML:

<!DOCTYPE html>
<html>
<head>
    <title>Form submission</title>
</head>
<body>
<form action="contact.php" 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>

PHP:

<?php
if(isset($_POST['submit'])){
    $to = "adress@example.com";
    $from = $_POST['email'];
    $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);
    echo "Mail Sent. Thank you " . $first_name . ", we will contact you shortly.";
}
?>

这是phpinfo()在sendmail_path上返回的内容:

sendmail_path   \xampp\mailtodisk\mailtodisk.exe    \xampp\mailtodisk\mailtodisk.exe

0 个答案:

没有答案