Short answer
He is in /app/View/Layouts/Emails/html/default.ctpand /app/View/Layouts/Emails/text/default.ctp.
It is NOT in /app/View/Emails/html/default.ctpor /app/View/Emails/text/default.ctp. For some reason, editing these files does not matter (it would seem).
Slightly long answer
The default is /app/View/Layouts/Emails/html/default.ctpas follows:
<?php
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title><?php echo $title_for_layout;?></title>
</head>
<body>
<?php echo $content_for_layout;?>
<p>This email was sent using the <a href="http://cakephp.org">CakePHP Framework</a></p>
</body>
</html>
, :
<p>This email was sent using the <a href="http://cakephp.org">CakePHP Framework</a></p>
/app/View/Layouts/Emails/text/default.ctp.