<?php
//Correo de destino; donde se enviará el correo.
$correoDestino = "
[email protected]";
//Variables.
$Nombre = $_POST['Nombre'];
$mail = $_POST['mail'];
$consulta = $_POST['consulta'];
$telefono = $_POST['telefono'];
//Formateo el asunto del correo
$asunto = "Contacto WEB_$Nombre; $Empresa, ";
//Cuerpo del email que se te enviará.
$cuerpo = "Enviado por: " . $Nombre . "\n, ".
$cuerpo .= "E-mail: " .$mail . "\n";
$cuerpo .= "Comentario:" .$consulta . " \n ";
$cuerpo .= "telefono:" .$telefono . " \n ";
// Envío el mensaje
// Envío el mensaje
mail( $correoDestino, $asunto, $cuerpo );
//$mail_status = mail( $mail_to );
?>
<script language="javascript" type="text/javascript">
alert('SE ENVIO CON EXITO. PRONTO ESTAREMOS EN CONTACTO CON USTED,PRESIONE ACEPTAR');
window.location = 'index.html';
</script>