繁体   English   中英

用户提交表单时如何通过电子邮件发送联系表单

[英]how to send a contact form by email when user submits forms

我已经创建了联系表格,一旦用户单击“提交”按钮,我现在就尝试将联系表格作为电子邮件发送。 但是,一旦用户单击“提交”,我就不会收到任何电子邮件。 我已经包括了我的HTML表单。 我知道我需要php以及javascript代码才能使电子邮件正常工作,但我不知道如何开始此过程。

我可以帮些忙。

<div id="details">
        <form method="post" name="Products" action="http://www.shop4pop.nl/products/">
        Please leave your name: <br>
        <input type="text" name="firstname"> <br>
        Email: <br>
        <input type ="email" name ="email">
        <br>


        <div id="detailsSecond">
        Please leave us a description of your artwork brief: <br>
        <textarea name = "textarea" rows="10" cols="50">Write something here</textarea>



        </div>

        <input type="submit" value="Submit">
        </form>

        </div>
<div id="details">
    <form method="post" name="Products" action="">
        Please leave your name: <br>
        <input type="text" name="firstname"> <br>
        Email: <br>
        <input type ="email" name ="email">
        <br>


        <div id="detailsSecond">
        Please leave us a description of your artwork brief: <br>
        <textarea name = "textarea" rows="10" cols="50">Write something here</textarea>



        </div>

        <input type="submit" value="Submit" name="submit">
    </form>

if(isset($_POST['submit']))
{
    if($_POST['submit']=="Submit")
    {
        $name = $_POST['firstname'];
        $detail = $_POST['textarea'];
        $email = $_POST['email'];


         $msg = "Hello yourname,<br /> $name tries to contact your from     following details. <br/><br/><br/><br/>Email : $email, <br /> Message : $detail";

        if(@mail("youremail@domain.com", $email,$msg, $headersifapplicable)){
            echo "Thank you for contacting.";
        }
        else
        {
            echo "There is some problem in contacting";
        }
    }
}

试试这个,它应该可以正常工作。

<?php



        $to="Your email address";

        //Errors
        $nameError="";
        $emailError="";
        $errMsg="";


        $errors="";//counting errors


        $name="";
        $email="";
        $message="";
        if(isset($_POST['send'])){


                if(empty($_POST['yourname'])){ //name field empty

                        $nameError="Please enter your name";
                        $errors++; // increament errors
                }else{

                        $name= UserInput($_POST['yourname']);

                        if(!preg_match("/^[a-zA-Z ]*$/", $name)){

                                $nameError="Only letters and white space accepted";
                                $errors++;
                        }

                }

                if(empty($_POST['email'])){

                        $emailError="Enter email";
                        $errors++;
                }else{

                        $email = UserInput($_POST['email']);

                        if(!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email)){

                                $emailError="Invalid Email";
                                $errors++;
                        }
                }


                if(empty($_POST['msg'])){

                        $errMsg="Enter message";
                        $errors++;
                }else{

                        $message=UserInput($_POST['msg']);
                }


                if($errors <=0){//No errors lets setup our email and send it

                         $headers = "MIME-Version: 1.0" . "\r\n";
                         $headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
                         $headers .= 'From: <' . $email . '>' . "\r\n";


                        $text  = "<p>New Message from $name </p>";
                        $text .= "<p>Name : $name</p>";
                        $text .= "<p>Email : $email</p>";
                        $text .= "<p>Message : $message</p>";


                        mail($to, "Website Contact", $text, $headers);
                        $success="Thank your message was submitted";
                        $_POST= array(); //clearing inputs fields after success

                }


        }





 //Filter user input
function UserInput($data){

        $data = trim($data);
        $data = stripcslashes($data);
        $data = htmlspecialchars($data);
        return $data;

}

?>



        <?php echo $success;?>
<form method="POST" action="<?php echo htmlspecialchars($_SERVER["PHP_SEL"]);?>">

        <span style="color:#f00;"><?php echo $nameError;?></span>
        <input type="text" name="yourname" placeholder="enter your name" <?php if(!empty($_POST['yourname'])){echo "value=\"".$_POST['yourname']."\"";}?>><br>

        <span style="color: #f00;"><?php echo $emailError;?></span>
        <input type="email" placeholder="your email" name="email" <?php if(!empty($_POST['email'])){echo "value=\"".$_POST['email']."\"";}?>><br>


        <span style="color: #f00;"><?php echo $errMsg;?></span>
        <textarea name="msg"><?php if(!empty($_POST['msg'])){echo $_POST['msg'];}?></textarea><br>

        <input type="submit" name="send" value="send">

</form>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM