Struts2 library for confirmation email
I just want to know if sending a "confirmation email" feature is provided out of the box for the struts2 framework. I've been using spring security for handling my login so something that plugs into that would really be helpful.
The "confirmation email" consists of a service which send emails with some kind of unique tokens and a service which receives开发者_运维知识库 those tokens and confirms your email is valid.
I also want to point out I was looking for an out of the box feature like this (aka plugin or whatever) as it seems a pretty standard way to confirm a mail is real. I did implement the feature myself in my app, but was half a day work I would have liked to spend on other stuff.
Since you're using Spring already, perhaps:
org.springframework.mail.MailSender
will work for you.
http://static.springsource.org/spring/docs/2.0.x/reference/mail.html
精彩评论