Ver Mensaje Individual
  #1 (permalink)  
Antiguo 08/10/2007, 03:38
moribe
 
Fecha de Ingreso: noviembre-2005
Mensajes: 39
Antigüedad: 18 años, 6 meses
Puntos: 0
@ incompatible con formulario.No muestra email

Hola! He configurado un ForMail.pl para que los resultados de un formulario los envie a mi correo. Todo bien, responde al buzon todos los campos menos el Email.

Aunque relleno el campo de entrada de datos, no me lo muestra entre las respuestas ni tan siquiera hace alusión a name.

¿¿¿¿¿Me puede ayudar alguien???? Gracias.

Os dejo el código.

Código HTML:
<form method="post" enctype="multipart/form-data" action="/cgi-bin/FormMail.pl"> 

<input type="hidden" name="recipient" value="[email protected]"> 

<input type="hidden" name="redirect" value="http://www.s.es/formacion/gracias.html"> 

<input type="hidden" name="subject" value="Consulta">

<input type="hidden" name="email" value="[email protected]">

<input type="hidden" name="required" value="nombre,email,texto"> 
 <table>

   <tr>
<td>Nombre:</td>

<td><input type="text" name="nombre" class="text"></td>
</tr>

  <tr>
<td>Email:</td>

<td><input type="text" name="email" class="text"></td>
</tr>


<tr>
	<td>Tu consulta:</td>
	<td><TEXTAREA NAME="texto"
	  ROWS="10"
	  COLS="30">
	Escribe aqui tu mensaje
	</TEXTAREA>
	</td>
	</tr>
	
	 <tr>

    <td colspan="2"><input type="submit" /></td>

   </tr>
    <tr>
   
    <td colspan="2"><INPUT TYPE="reset" VALUE="Borrar todo"></td>
    </tr>
  
  </table>
</form>