我已经使用mailfunction创建了一个contactform。但是所有邮件都将成为垃圾邮件。我的代码如下

时间:2019-05-02 11:02:25

标签: php html contact-form

我已经使用mailfunction创建了一个联系表单。但是所有的邮件都将成为垃圾邮件。我的代码在下面给出

<?php 

//  MAIL SEND PHP

if(isset($_POST['submit'])){
    $to = "abc@gmail.com"; // this is your Email address
    $from = $_POST['email']; // this is the sender's Email address
    $email = $_POST['mail'];
    $name = $_POST['name'];
    $subject = "Form submission";
    $subject2 = "Copy of your form submission";
    $message = $email . " " . $name . " wrote the following:" . "\n\n" . $_POST['message'];
    $message2 = "Here is a copy of your message " . $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.
    }

    // END MAIL SEND PHP
?>

1 个答案:

答案 0 :(得分:0)

因为我以前曾遇到过此问题,所以可以使用phpmailer解决此问题。带有smtp的详细信息,希望它能够正常运行。 签出此链接-click here