0

i have created a contact form, i am now trying to send the contact form as an email once the user has clicked in the submit button. but once the user clicked on submit i do not receive any emails. i have included my html form. i am aware that i need php and maybe javascript codes in order to make the email work but i do not know how to start this process.

i could do with some help.

<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>
cazlouise
  • 77
  • 1
  • 3
  • 11

2 Answers2

0
<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";
        }
    }
}
Prateik Darji
  • 2,297
  • 1
  • 13
  • 29
  • thanks for the code, Tried the following but still nothing – cazlouise Oct 13 '16 at 14:20
  • are you trying to send mail from your localhost? – Prateik Darji Oct 13 '16 at 14:22
  • 1
    if you sending from localhost make sure you have a running internet and mecury mail is running from your localhost – Masivuye Cokile Oct 13 '16 at 14:27
  • yes and you can also use phpmailer for sending mails from localhost – Prateik Darji Oct 13 '16 at 14:30
  • i changed the email to my personal email and i found the email from the form in my junk email. and yes i am trying to run on a localhost but i am not a php programmer and do not know how to use phpmailer any idea. my knowledge of phpmailer is that it allows the email not been categorised as a spam but a normal email right? – cazlouise Oct 13 '16 at 14:36
0

Try this it should work perfectly.

<?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>
Masivuye Cokile
  • 4,754
  • 3
  • 19
  • 34