Hi i didnt find anything about this here on the forum and i cant figure out how to do it myselfe either. i have a homepage runing java with servlets and jsp pages and i want a simple contactform that sends a message from the form to a specific mail. like this:
<form action="contact" method="post">
<p>Your email address: <input name="email">
<p>Mail subject: <input name="subject">
<p>Mail message: <textarea name="message"></textarea>
<p><input type="submit">
</form>
my question is how to create a servlet that uses the form above to send a message given by the user to my email. please help!