After loading a model I the only way to get to the data seems to be very ugly.
$this->User->read(NULL, 49);
print $this->User->data['User']['email'];
Most frameworks have a much nicer way of accessing like
$User = new Model_User(49);
print $User->email;
Is there anyway to do this in CakePHP 1.2/3?