How can I register with CakePHP ?
After registering , it will send email for confirmation.
If I click the link for confirmation then the account will be confirmed.
How can I do this?
Is there any function with Auth to do that?
Or do I have to send mail manually to confirm registration ?
If I have to send email manually to confirm registration, then how can I generate the registration token, and how can I set time to be a valid token ?
Can anyone show an example of this?
Check the source of the Cake Development Corporations users plugin, its available for CakepPHP 1.3 and 2.0. https://github.com/cakedc/users It already does everything - in a proper MVC and CakePHP way - that you request. Simply use the plugin or take some of the code.