Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/10/2009, 13:06
jacy_hv
 
Fecha de Ingreso: octubre-2009
Mensajes: 8
Antigüedad: 14 años, 6 meses
Puntos: 0
Mandar e-mail por php

Tengo un formulario en html y quiero que se envie a mi e-,ail por php y no tengo ni idea de codigo php a ver si me ayudais.
Este es el formulario cosa simple en html:

----------------------------------------------------------------------------------------------------------------------------------------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"


<html>
<head>
<title>formulario</title>
<link rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" />
</head>

<body>

<form id="contacto" name="contacto" method="post" action="send.php">
<p><label>Nombre<input name="nombre" type="text" id="nombre" size="30" /><label></p>
<p><label>Mensaje<br />
<textarea name="mensaje" cols="40" rows="8" id="mensaje"></textarea></label></p>
<p><input type="submit" name="Submit" value="Enviar" /></p>
</form>
</body>
</html>