如何从jsp页面使用GMail SMTP服务器发送电子邮件?
我试图从 jsp 页面通过 GMail 的 SMTP 服务器发送电子邮件,但没有得到正确的结果
I am trying to send an email via GMail's SMTP server from a jsp page but I didn't get the correct result
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 JSP 中,当您提交表单时,您需要调用一个 Java 类,在其中编写使用 JavaMail 发送邮件的代码。你可以在这里找到一个例子
http://code.geekinterview.com/java/send -email-using-gmail-mail-server.html:
From JSP, when you submit the form, then you need to call a Java class in which you write code for sending mail using JavaMail. You can find an example here
http://code.geekinterview.com/java/send-email-using-gmail-mail-server.html:
您必须使用 Java Mail API。
You have to use Java Mail API.