使用php转发电子邮件时出错

时间:2018-10-17 09:14:05

标签: php email

            <?php 
            if(isset($_POST['submit'])){
                $to = "abpaple@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.
                // You cannot use header and echo together. It's one or the other.
                }
            ?>


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

我正在研究php邮件发送的概念,即时通讯没有得到如何解决此错误的信息,如果有人可以帮助我,它将对我有很大帮助。我收到了这样的错误

  

警告:mail():SMTP服务器响应:530 SMTP身份验证为   需要。在第14行的C:\ xampp \ htdocs \ Message_delivering \ 1.php中

     

警告:mail():SMTP服务器响应:530 SMTP身份验证为   需要。在第15行的C:\ xampp \ htdocs \ Message_delivering \ 1.php中

0 个答案:

没有答案