Подсказка: используйте это в вашем обратном вызове afterPaypalNotification в вашем AppController.php
function afterPaypalNotification($txnId)
{
ClassRegistry::init('PaypalIpn.InstantPaymentNotification')->email(array('id' => $txnId,
'subject' => 'Thanks!',
'message' => 'Thank you for the transaction!'
));
}