How to autogenerate password with cakaphp 2.1 and send the password to the new user?
I manage to create a random password in the function beforesave with the next code
public function beforeSave() {
$password = $this->generatePassword();
pr($password);
$this->data['User']['password'] = $password;
$this->User->save($this->data);
// if (isset($this->data[$this->alias]['password'])) {
// $this->data[$this->alias]['password'] = AuthComponent::password($this->data[$this->alias]['password']);
// }
but in my user controller I dont know how to get this password, Im using the next function to send the email, but the password does not content
function emails($id){
$username = $this->data['User']['username'];
$hola = $this->data['User']['password'];
$this->Email->to = $this->data['User']['email'];
$this->set('username', $username);
$this->set('contact', $hola);
//$this->set('contact', $contact);
$this->Email->subject = 'Your account has been created';
$this->Email->from = 'florescelia@gmail.com';
$this->Email->template = 'simple_message'; // file name template.ctp will be included in /views/elements/email/text/template.ctp
$this->Email->sendAs = 'html';
$this->Email->smtpOptions = array(
);
any data
Any idea, Thanks