Ver Mensaje Individual
  #6 (permalink)  
Antiguo 15/11/2009, 23:26
darthradium
 
Fecha de Ingreso: noviembre-2009
Mensajes: 3
Antigüedad: 15 años, 3 meses
Puntos: 0
Respuesta: ¿como enviar un formulario a un correo por php?

este el form en html:

<FORM action="envio.php" method=post>

*Campos Obligatorios

<table class="formul" border="1">

<tr>
<td>* Nombre:</td>
<td><input type="text" id=" nombre " /></td>
</tr>
<tr>
<td>Apellido:</td>
<td><input type="text" id=" lastname " /></td>
</tr>
<tr>
<td>* E-Mail:</td>
<td><input type="text" id=" email" /></td>
</tr>
<tr>
<td>Telefono Oficina:</td>
<td><input type="text" id=" tel_ofice" /></td>
</tr>
<tr>
<td>* Telefono Movil:</td>
<td><input type="text" id=" celular" /></td>
</tr>
<tr>
<td>Empresa:</td>
<td><input type="text" id=" remitente " /></td>
</tr>
<tr>
<td>* Mensaje:</td>
<td><textarea name="text" id=" message "rows="" cols="" ></textarea></td>
</tr>
</table>
<br />
<input type="submit" id="submit" name="send" value="Enviar &raquo;" title="Espera un momento para confirmar su mensaje" />
</FORM>