1

im currently working on a website and want to have a contact form which sends me the e-mail with the question. I found some tutorials but they aren't very clear. Anybody knows how to deal with this?

Thanks in advance

tijn167
  • 547
  • 2
  • 21
  • 1
    One might answer "Yes I do", what is your specific issue? Maybe you could try something and tell us where you are stuck –  Nov 23 '16 at 18:44

1 Answers1

0
  1. Serve the form
  2. Handle form submission: get the user input and pass that to some service that send the mail

see this question for example: doGet and doPost in Servlets

For the service, to send the mail, check out java-mail, see this tutorial for example


=> community wiki

Community
  • 1
  • 1
  • see also https://stackoverflow.com/questions/14723310/using-thymeleaf-template-for-sending-mail-with-spring?rq=1 –  Nov 23 '16 at 18:51