Código PHP:
<form id="contacto" name="contacto" method="post" action="enviar.php">
<p>
<label><span class="Estilo12">NOMBRE Y APELLIDOS</span>
<input name="nombre" type="text" id="nombre" onblur="MM_validateForm('nombre','','R');return document.MM_returnValue" size="75" />
</label>
</p>
<p>
<label><span class="Estilo12">TELEFONO</span>
<input name="telefono" type="text" id="telefono" onblur="MM_validateForm('telefono','','NisNum');return document.MM_returnValue" size="30" />
</label>
</p>
<p>
<label><span class="Estilo12">E-MAIL</span>
<input name="mail" type="text" id="mail" onblur="MM_validateForm('mail','','RisEmail');return document.MM_returnValue" size="50" />
</label>
</p>
<p>
<label><span class="Estilo12">INFORMACION QUE DESEA RECIBIR</span><br />
<textarea name="mensaje" cols="45" rows="5" id="mensaje" onblur="MM_validateForm('mensaje','','R');return document.MM_returnValue"></textarea>
</label>
</p>
<p class="Estilo4">INTENTE ESPECIFICAR LO MAXIMO POSIBLE</p>
<p class="Estilo4">
<input type="submit" name="enviar" value="Enviar" />
</p>
<p class="Estilo4">
<label>
<input name="privacidad" type="checkbox" id="privacidad" />
acepto politica de privacidad</label>
</p>
<p> </p>
</form>
Código PHP:
<?php
$nombre = $_POST['nombre'];
$mail = $_POST['mail'];
$telefono = $_POST['telefono'];
$header = 'From: ' . $mail . " \r\n";
$header .= "X-Mailer: PHP/" . phpversion() . " \r\n";
$header .= "Mime-Version: 1.0 \r\n";
$header .= "Content-Type: text/plain";
$mensaje = "Este mensaje fue enviado por " . $nombre . " \r\n";
$mensaje .= "Su e-mail es: " . $mail . " \r\n";
$mensaje .= "Mensaje: " . $_POST['mensaje'] . " \r\n";
$mensaje .= "Enviado el " . date('d/m/Y', time());
$para ='correodelaweb ';
$asunto = 'Solicitud de informacion';
mail($para, $asunto, utf8_decode($mensaje), $header);
echo 'GRACIAS POR SU INTERES. EN BREVE NOS PONDREMOS EN CONTACTO CON
USTED';
?>