Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/07/2011, 09:02
matrux
 
Fecha de Ingreso: febrero-2007
Mensajes: 16
Antigüedad: 17 años, 2 meses
Puntos: 1
Respuesta: Formulario de contacto

gracias, me quedo asi el codigo, y cuando oprimo enviar me abre el outlook, se puede hacer que me lo envie directamente a mi correo?

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>

<body>
<form action="mailto:[email protected]" method="post" enctype="text/plain">

<p>Nombre:
  <input name="Nombre" type="text" size="30" />
</p>
<p>Empresa:
  <input name="Empresa" type="text" size="30" />
</p>
<p>E-Mail:
  <input name="E-Mail" type="text" size="30" />
</p>
<p>Mensaje:</p>
<form id="form1" name="form1" method="post" action="">
  <p>
    <label for="mensaje"></label>
    <textarea name="mensaje" id="mensaje" cols="70" rows="5"></textarea>
  </p>
</form>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
  <input type="submit" name="Enviar" id="Enviar" value="Enviar" />
</form>
</body>
</html>