Tema: Formulario
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/01/2011, 13:04
sirdaiz
 
Fecha de Ingreso: diciembre-2010
Mensajes: 459
Antigüedad: 14 años, 1 mes
Puntos: 21
Formulario

Quisiera hacer un formulario que envie datos a un email con jsp, alguna idea?

<form class="uno" name="formulario1" method="post" action="mailto:[email protected]">

<img class="shakeimage" src="../img/punto2.jpg" style="cursor:hand" onMouseOver="init(this);rattleimage()" onMouseOut="stoprattle(this)"></img>

Dirección de e-mail:
<BR>
<input type="text" name="direccion" size="40">
<BR><BR>
Su nombre y apellidos:
<BR>
<input type="text" name="nombre" size="40">
<BR><BR>
Asunto:
<BR>
<input type="text" name="asunto" size="40">
<BR><BR>
Escriba su mensaje:
<BR>
<textarea name="comentario" rows="4" cols="60"> </textarea>
<BR><BR>
<button name="enviar " type="submit" style="background-color:black; border:none;">
<img src="../img/correcto.jpg" width="40px" height="40px" ></img>
</button>
<button name="borrar" type="reset" style="background-color:black; border:none;">
<img src="../img/delete.jpg" width="40px" height="40px" ></img>
</button>

</form>

pero eso pasa por outlook, hay alguna forma que se envie directamente con java?

Gracias