Email->to = 'yourlogin@localhost'; $this->Email->subject = 'Cake test template email'; $this->Email->replyTo = 'noreply@example.com'; $this->Email->from = 'Cake Test Account '; $this->Email->template = 'test'; //Set view variables as normal $this->set('someValue', 'Cake tastes good today'); //Do not pass any args to send() if ( $this->Email->send() ) { $this->Session->setFlash('Template email sent'); } else { $this->Session->setFlash('Template email not sent'); } $this->redirect('/'); } ?>