5

我是 JSP 的新手,我正在一个项目中创建一个联系表单页面。我使用 Tomcat 作为我的本地主机。我已经创建了表单,并将其保存在 JSP 中。这是一个非常简单的表格。带有姓名、电子邮件、主题、消息。

现在,我还需要使用 JSP 对其执行操作,并将其发送到 Gmail。因此,当有人使用联系表格时,它将被发送到 gmail 地址。我创建了一个新的 JSP 文件并将其命名为 mail.jsp。

但现在我完全迷失了。有人能帮助我吗?

这是第一页,联系表格:

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Contact Form</title>
    </head>
    <body>

    <form method="post" action="mail.jsp">
    <center><h4>Contact us:</h4></center>
    <br />
    <center>Name: <input type="text" name="name"><br /></center> 
    <br> 
    <center>Email: <input type="text" name="email"><br /></center>
    <br>  
    <center>Subject: <input type="text" name="subject"><br /></center>
    <br>  
    <center>Message: <br/><textarea name="message"> </textarea><br /></center>
    <center>
    <input type="submit" value="Submit">
    <input type="reset" value="Reset">
    </center>   
  </form>
  </body>
  </html>

我现在该怎么办?

4

3 回答 3

0

You need to use an SMTP client (like the one in the Javamail library) to send from your domain postmaster@example.com to dest@gmail.com. You need to put the Javamail JAR on your CLASSPATH, and code like in this question.

Since Java programming in a JSP is not recommended, you'd better using a Servlet for this.

于 2012-12-18T22:12:28.147 回答
0

由于您的操作设置为 mail.jsp,因此创建该 JSP 并在 JSP 内部您可以使用类似 scriptlet

<%
// Use Java Mail API to send email here
%>

Some points
1. Get the information from request e.grequest.getParameter("subject")
2. Explore Java Mail API and find out about SMTP server available for you. If not available then you can also Google SMTP Server (Do bit google on it)
3. I think your problem is how to put Java Code in JSP, so as mentioned above use scriptlets.

执行此操作的最佳方法是创建一个 servlet,并在您的表单操作属性中提供该 servlet 的 URL。从该 servlet 发送电子邮件后,您可以转发到任何其他 JSP 或带有消息(已发送电子邮件)的相同 JSP。

如果您是 JSP 新手,那么这应该会有所帮助,但如果您是 Java 新手,请告诉我,我可以发送可以使用表单参数发送电子邮件的源代码。

于 2012-12-18T22:44:59.663 回答
0

Look at JavaBrains video tutorial, it's great for me.
There will be information how You can send data from form in JSP to servlet and how You can do something with that data.
http://javabrains.koushik.org/p/jsps-and-servlets.html

于 2012-12-18T23:46:07.687 回答