Tengo mi formulario de contacto en php, me llega el email con todos los datos pero pegados, ejemplo:
[email protected] creo que etc etc.
En lugar de que me lleguen en diferente parrafo y con el "nombre" de lo que me estan enviando, o sea:
Nombre: Pepe
Tel: 1345456
Email: [email protected]
Comentarios: Pues yo creo que etc etc.
----
Aqui esta mi codigo de php:
<?php
if($_GET['mensaje']=="enviado") {
function form_mail($sPara, $sAsunto, $sTexto, $sDe)
{
if ($sDe)$sCabeceras = "From:".$sDe."\n";
else $sCabeceras = "";
$sCabeceras .= "MIME-version: 1.0\n";
$sTexto = $_POST['Nombre']. $_POST['Tel']. $_POST['Email']. $_POST['Comentarios'];
if ($bHayFicheros)
$sTexto .= $sAdjuntos."\n\n----_Separador-de-mensajes_----\n";
return(mail($sPara, $sAsunto, utf8_decode($sTexto), $sCabeceras));
}
if (form_mail("[email protected]", "Contacto desde Empresa X", "Los datos introducidos en el formulario son:\n\n", $_POST[email]))
echo "Tus datos se han enviado. Gracias";
} else {
?>
<style type="text/css">
#formulario table tr td {
font-size: 19px;
color: #a9cfe7;
font-family: Arial, Helvetica, sans-serif;
font-style: italic;
font-weight: bold;
}
.boton_derecha {
text-align: center;
float: left;
width: 80px;
height: 22px;
font-size: 16px;
font-style: italic;
font-weight: bold;
}
#formulario table tr td p {
font-weight: bold;
}
</style>
<form name='formulario' id='formulario' method='post' action='?mensaje=enviado' target='_self' enctype="multipart/form-data">
<table width="400">
<tr>
<td width="128" height="40">Nombre:</td>
<td width="258"><input name="Nombre" type="text" id="Nombre" value="" size="35" /></td>
</tr>
<tr>
<tr>
<td width="128" height="40">Teléfono:</td>
<td width="258"><input name="Tel" type="text" id="Tel" value="" size="35" /></td>
</tr>
<tr>
<tr>
<td width="128" height="40">Correo:</td>
<td width="258"><input name="Email" type="text" id="Email" value="" size="35" /></td>
</tr>
<tr>
<tr>
<td width="128" height="123" ><p>Comentario:</p>
<p> </p>
<p> </p></td>
<td width="258"><textarea name="Comentarios" cols="28" rows="6" id="Comentarios"></textarea></td>
</tr>
<tr>
<td height="27"> </td>
<td><input name="submit" type='submit' class="boton_derecha" style="background-color:#a9cfe7; color:#FFFFFF; border:thin;" value='Enviar' /></td>
</tr>
</table>
</form>
<?php } ?>