Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.