从我的网络应用程序发送邮件
我的网络应用程序中有一个功能,就像我必须从服务器发送邮件到许多电子邮件 ID(某种通知内容),
我的网络应用程序是在 struts2 中实现的。我猜可能我必须使用javamail api。我对这个 javamail 和从服务器发送邮件完全陌生。在 Windows 中设置邮件服务器需要执行哪些基本步骤,请从我的 Java Web 应用程序联系服务器。我应该使用什么API? 网络上关于 javamail 的教程非常有限,而且也非常复杂。 除了 javamail 之外,还有其他 api 可以用来从 java struts2 web 应用程序发送邮件吗?
谢谢
I have a feature in my web app like I have to send mails from the server to many email ids (some kind of notification stuff)
my web application is implemented in struts2. Possibly I have to use javamail api i guess. I am completely new to this javamail and sending mail from server. what basic steps I need to do to setup a mail server in windows, contact the server from my java web app. What api i should I use ?
The web has very limited tutorials on javamail and they are damn complicated too.
Is there any other api other than javamail by which I can send mail from my java struts2 web app.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议您使用 Mercury 作为您的邮件服务器。 javamail API 非常简单。只需创建一个实用程序类即可进一步简化 javamail API。
I suggest you use Mercury for your mail server. The javamail API is pretty straightforward. Just create a utility class to simplify the javamail API further.
为此,请在您的 jsp 页面中使用 smtp...
如需更多参考,请访问 www.java2s.com
for this use smtp in your jsp page...
for more refrence go to www.java2s.com