Código PHP:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Formulario de envio de datos</title>
</head>
Versión beta
<?php
if (!isset($_POST['email'])) { ?>
<form action="<?=$_SERVER['PHP_SELF']?>" method="post">
<label>
<strong>Nombre</strong>:
<input name="nombre" STYLE="background:yellow;color:red" type="text" />
</label></p>
<label>
Apellido:
<input name="Apellido" type="text" />
</label></p>
<label>
DNI:
<input name="dni" type="text" />
</label></p>
<label>
Teléfono:
<input name="telefono" type="text" />
</label></p>
<label>
Fecha de nacimiento:
<input name="Nacimiento" type="text" />
</label></p>
<label>
Fecha de carnet de conducir:
<input name="Carnet" type="text" />
</label></p>
<label>
Localidad:
<input name="Localidad" type="text" />
</label></p>
<label>
Email:
<input name="email" type="text" />
</label></p>
<label>
Mensaje:
<textarea name="mensaje" rows="6" cols="50"></textarea>
</label></p>
<input type="reset" value="Borrar" />
<input type="submit" value="Enviar" />
</form>
<?php
}else{
$headers .= 'MIME-Version: 1.0' . "\n";
$headers .= "Content-type:text/html; charset=utf-8\r\n";
$headers .= "From: Arpez.es <" . $_POST["email"] . ">\r\n";
$mensaje="Mensaje del formulario de contacto de Arpez.es<br>";
$mensaje.= "<b>Nombre:</b> ". $_POST['nombre']. "<br>";
$mensaje.= "Apellido: ". $_POST['Apellido']. "<br>";
$mensaje.= "DNI: ".$_POST['dni']. "<br>";
$mensaje.= "Nacimiento: ".$_POST['Nacimiento']. "<br>";
$mensaje.= "Localidad: ".$_POST['Localidad']. "<br>";
$mensaje.= "cp: ".$_POST['CP']. "<br>";
$mensaje.= "Email: ".$_POST['email']. "<br>";
$mensaje.= "Observaciones: \n".$_POST['Observaciones']. "<br>";
$mensaje.= "Mensaje: \n".$_POST['mensaje']. "<br>";
$remitente = $_POST['email'];
$asunto = "Mensaje enviado por: ".$_POST['nombre'];
mail($destino,$asunto,$mensaje,$headers); ?>
<p>Mensaje enviado.</p></strong>
<?php
}
?>
<body>
</body>
</html>
Con esto debe de funcionarte a fuerza :P