Results 1 to 2 of 2

Thread: Email Activation through Spring Security?

  1. #1
    Join Date
    Feb 2011
    Location
    Software Nirvana Land
    Posts
    30

    Exclamation Email Activation through Spring Security?

    Is there any way to send an activation email on user registration through Spring Security?

    Any other suggestions?

    I can send mail using Spring's MailSender and SimpleMailMessage.

    Do i have to implement the creating of activation url,saving the token, matching the token on click etc. ?

    Is there any better way?

  2. #2
    Join Date
    Jan 2008
    Posts
    1,834

    Default

    Spring Security does not provide a means for registering users other than an API (UserDetailsManager) and a few implementations (InMemoryUserDetailsManager, JdbcUserDetailsManager, LdapUserDetailsManager) for adding basic users. Most of the time I find that this functionality needs to be extended since there are usually special needs.
    Rob Winch
    Twitter @rob_winch
    Spring Security Lead
    Spring by Pivotal

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •