How to confirm email addrees in spring MVC web application

前端 未结 2 860
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-06 13:46

I am registering user with email address . but i want to send the user a confirmation link where if they click then their email address gets confirmed

I am using         


        
2条回答
  •  终归单人心
    2021-02-06 14:39

    Use Java Mail Api to create a e-mail with confirmation. Also, you need to generate unique id to confirm the user - this info can be stored in db. After the moment user clicks on your confirmation link you should set user in 'Confirmed' state.

提交回复
热议问题