CakeEmail is a CakePHP class to send email. With this class one can send email from any place in your application. In addition to using the EmailComponent from your controller, you can also send mail from Shells and Models.
Basic Usage:
$Email = new CakeEmail();
$Email->from(array('me@example.com' => 'My Site'))
->to('you@example.com')
->subject('About')
->send('My message');