Email->to = 'yourlogin@localhost'; $this->Email->subject = 'Cake test simple email'; $this->Email->replyTo = 'noreply@example.com'; $this->Email->from = 'Cake Test Account '; //Set the body of the mail as we send it. //Note: the text can be an array, each element will appear as a //seperate line in the message body. if ( $this->Email->send('Here is the body of the email') ) { $this->Session->setFlash('Simple email sent'); } else { $this->Session->setFlash('Simple email not sent'); } $this->redirect('/'); } ?>