sending mail from apache tomcat

后端 未结 3 566
梦毁少年i
梦毁少年i 2021-01-05 07:35

I am working on a web project using Tomcat 6 as my webserver and JSP as frontend. I want to send a mail from the web server to an email account. How can I achieve this?

3条回答
  •  时光取名叫无心
    2021-01-05 08:02

    Using Java-Mail API.

    • Take required inputs from JSP,
    • Post it to Servlet
    • Invoke service method to send Mail from Servlet
    • Use Java Mail API to send mails from service method, a quick example

提交回复
热议问题