I am new to grails,i have login form for my app for which i have not used spring-security-plugin..now i want to have a link in login form called forgot password which will retrieve it from data base but my problem is how to send it to that user mail id. can any one help me answering it..

waiting for answer.

advance thanks, Laxmi

link|improve this question

45% accept rate
feedback

2 Answers

Please, please, please - never ever store your user's passwords in your database.

If you understand and accept that you should never email users their password (or even store it in the database) you will find some useful resources on sending emails from your grails application below.

On sending emails from Grails read this page.

link|improve this answer
How about using antbuilder? – laxmi May 23 '11 at 10:41
feedback

Rather than sending them their password (which would require storing them unencrypted which is an incredibly bad idea) you should provide them a workflow where they can reset their password. Collect their email at signup, then send them a link to a page where they change the value. The Spring Security UI plugin has support for this - see section "6 Forgot Password" in the documentation.

If you don't want to use the whole UI plugin, feel free to just use that code and workflow in your application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.