function sendMail() { var name = document.getElementById("name").value; var email = document.getElementById("email").value; var message = document.getElementById("message").value; if (name !== "" && email !== "" && message !== "") { var json_object = { "name": name, "email": email, "message": message }; $.ajax({ cache: false, data: JSON.stringify(json_object), contentType: "application/json", dataType: "json", type: 'POST', url: 'https://api.factorg.pe/contacto', success: function () { document.getElementById("name").value = ""; document.getElementById("email").value = ""; document.getElementById("message").value = ""; toastr.success('Tu comentario fue enviado correctamente.', { timeOut: 5000 }); }, error: function (XMLHttpRequest, textStatus, errorThrown) { toastr.error('Tuvimos un problema al recibir su solicitud, Favor de volver a intentar en unos minutos o escribirnos al WhatsApp.', { timeOut: 5000 }); } }); } else { toastr.error('Por favor complete la información en el formulario de contacto.', { timeOut: 5000 }); } return false; }