Using CakePHP's Email component

Hi!

I try to send a simple Email via CakePHP's Email Component. I'm using following code from the cookbook documentation:

$this->Email->from    = 'Irgendjemand ';
$this->Email->to      = 'Irgendjemand Anderes ';
$this->Email->subject = 'Test';
$this->Email->send('Dies ist der Nachrichtenrumpf!');

The send()-method does only return a boolean value with the value false - but no error or warning occurs.

Does somebody have a solution for that?