Sometimes I receive the mails, sometimes I don't.
Is this code correct ?
<?
if ($_POST["Submit"]){
if ($_POST["name"] and $_POST["email"] and $_POST["subject"] and $_POST["message"] ){
//mail gegevens
mail (
"info@casariegoart.com",
"via website (EN)",
"
Name: ".$_POST['name']."
E-mail: ".$_POST['email']."
Subject: ".$_POST['subject']."
Message: ".$_POST['message']."
",
"From: ".$_POST['name']." <".$_POST['email'].">");
//dankwoordje
echo '<p align="center"><font color="#003366">Thanks !<br>Your message has been sent.<br> We will get back to you as soon as we can.</font></p>';
}
//Indien problemen
else{
echo '<p align="center"><font color="#FF0000">Please fill in all dates!</font></p><p><a href="contactEN.html">[back]</a>';
}
}
?>
