Sí lo tengo el metodo post.. :(
Código HTML:
<form id="ContactForm" action="contactform.php" method="post" name="ContactForm">
<div>
<div class="wrapper">
<span>*Nombre:</span>
<input name="Nombre" type="text" required class="input" id="Nombre" maxlength="60">
</div>
<div class="wrapper">
<span>Empresa:</span>
<input name="Empresa" type="text" class="input" id="Empresa" maxlength="50">
</div>
<div class="wrapper">
<span>*Motivo:</span>
<input name="motivo" type="text" class="input" id="motivo" maxlength="50">
</div>
<div class="wrapper">
<span>*Telefono</span>
<input type="tel" id="geografico" name="geografico" placeholder="+34" size="3" value="+34" disabled>
<input type="tel" id="telefono" name="telefono" size="6" maxlength=9 required pattern="[0-9]{6}" class="input" >
</div>
<div class="wrapper">
<span>E-mail</span>
<input type="email" id="mail" name="mail" required class="input" >
</div>
<div class="textarea_box">
<span>Su mensaje:</span>
<textarea id="consulta" name="consulta" cols="1" rows="1"></textarea>
</div>
<div id="aster"> * | Campos obligatorios
<br>
</div>
<p><a href="javascript:validar();" onClick="document.getElementById('ContactForm').submit()">Enviar</a>
<a href="#" onClick="document.getElementById('ContactForm').reset()">Limpiar</a></p>
</div>
</form>
Y el php:
Código PHP:
<?php
//Correo de destino; donde se enviará el correo.
$correoDestino = "[email protected]";
//Variables.
$Nombre = $_POST['Nombre'];
$Empresa = $_POST['Empresa'];
$motivo = $_POST['motivo'];
$telefono = $_POST['telefono'];
$mail = $_POST['mail'];
$consulta = $_POST['consulta'];
$fecha = time ();
$fechaFormateada = date ("j/n/Y", $fecha);
//Formateo el asunto del correo
$asunto = "Contacto WEB_$Nombre; $motivo";
//Cuerpo del email que se te enviará.
$cuerpo = "Enviado por: " . $Nombre . "\n, ".
$cuerpo .= "Empresa: " .$Empresa . "\n ";
$cuerpo .= "Motivo: " .$motivo . "\n ";
$cuerpo .= "Telefono de contacto:" .$telefono . "\n";
$cuerpo .= "E-mail: " .$mail . "\n";
$cuerpo .= "Comentario:" .$consulta . " \n ";
// Envío el mensaje
mail ( $correoDestino, $motivo);
$mail_status = mail($mail_to);
?>
<script language="javascript" type="text/javascript">
alert('Su mensaje ha sido enviado. Nos pondremos en contacto lo antes posible.');
window.location = 'Contacta.html';
</script>
<?php
tal cual... :(