function sendMail(){ var nom = document.getElementById('nom').value; var mail = document.getElementById('mail').value; var sujet = document.getElementById('sujet').value; var texte = document.getElementById('info').value; var contact = document.getElementById('mail_contact').value; if(nom != "" && mail != "" && info != ""){ jQuery.ajax({ url: "https://fongiouest.fongifrance.fr/ajax/sendMailFamo.php", datatype: "json", method: "POST", async: false, data:{ nom:nom, mail : mail, sujet:sujet, texte:texte, contact:contact }, success: function (data) { if(data='1'){ alert('Message envoyé'); } console.log(data); }, error: function () { } }); }else{ alert("Veuillez saisir le maximum d'informations afin qu'on puisse vous aider au mieux et vous répondre."); } }