Hey Ranjana, I would make the following suggestion: Make it a password reset system instead of a reminder system. This allows you to keep your password encrypted, and still email users with information, without compromising security.
Once a user requests a password reset (via the website) send them off an email with a unique key that is stored against their user id in the Users table. This key field will be left empty or null if there is no password reset request in progress. Then create an action on your users controller that the user will go to when they have the key in their email. This action should check the email address, username, key, and if all match successfully, provide a password reset input, where they can choose their own new password. I hope this gives you a little direction on what you need to be doing, and how to achieve it. Cheers, Graham On Wed, Sep 3, 2008 at 1:35 PM, Ranjana Sriavastava <[EMAIL PROTECTED]>wrote: > hello > > I wnat to forget passord via email id and send email to user email id with > cakephp. > > > On Wed, Sep 3, 2008 at 4:48 AM, Graham Weldon <[EMAIL PROTECTED]>wrote: > >> Hey Ranjana, >> Were you looking to create a password reminder feature for a site you are >> building? >> Provide a little more detail about what you are trying to achieve, and >> someone will be able to provide some direction or assistance. >> >> Cheers, >> Graham >> >> >> On Tue, Sep 2, 2008 at 5:18 PM, Ranjana Sriavastava < >> [EMAIL PROTECTED]> wrote: >> >>> I am new with cakphp. I want forget password with cakepho. so pls help >>> me. >>> >>> >>> >> >> >> > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
