Mirar e conseguido avanzar pero ahora siempre me muestra "Enviado" ANTES DE DARLE AL ENVIAR
y no entiendo por que.... haber si alguien se da cuenta de mi error porque no lo entiendo...
Código PHP:
Ver original<?php
$seEnvio;
$name=$_POST['name'];
$asunto= "Asunto: ".$_POST['asunto'];
$mensaje=$_POST['mensaje'];
$de=$_POST['emails'];
$de2=$_POST['emails2'];
$telef=$_POST['telef'];
$cabeceras = 'MIME-Version: 1.0' . "\r\n";
$cabeceras .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$cuerpomsg ='
<html>
<head>
<title>Tienes un mensaje nuevo</title>
</head>
<body>
<p>¡Su publicación ha recibido un nuevo mensaje!</p>
<p><b>Contenido:</p>
<p>'.$mensaje.'</p>
<p>Datos de su contacto:</p><br>
Nombre: '.$name.'<br>
E-mail: '.$de.' <br>
Teléfono: '.$telef.'<br>
<p></p>
</body>
</html>
';
if (mail($para,$asunto,$cuerpomsg,$cabeceras)){
$seEnvio = true;
}else{
$seEnvio = false;
}
if($seEnvio == true)
{
echo "Enviado";
}
else
{
echo "No enviado";
}
?>
<body>
<div id="emaildiv"><form method="post" enctype="multipart/form-data" name="formu" id="formu">
<table width="100%">
<tr>
<td><center>Escriba su información de contacto y el texto que desea enviar.</center></td>
</tr>
<tr>
<td>Nombre:<br>
<input type="text" required maxlength="15" id= "name" name="name"></td>
</tr>
<tr>
<td>E-mail:<br>
<input type="email" required maxlength="35" id="emails" name="emails"></td>
</tr>
<tr>
<td>Repetir E-mail:<br>
<input type="email" required maxlength="35" id= "emails2" name="emails2"></td>
</tr>
<tr>
<td>Teléfono:<br>
<input type="tel" maxlength="15" id= "telef" name="telef"></td>
</tr>
<tr>
<td>Asunto:<br>
<input type="text" required maxlength="15" id= "asunto" name="asunto"></td>
</tr>
<tr>
<td>Texto:<br>
<textarea rows="4" required maxlength="250" id= "mensaje" name="mensaje"></textarea></td>
</tr>
<tr>
<td><center><input name="submit" id="submit" type="submit" value="Enviar"></center></td>
</tr>
</table></form>
</div>
</body>
</html>
Mil Gracias!!!!