First, put exception_notifier.php on app/controllers/components in your CakePHP application. Second, put qdmail.php on app/controllers/components too because excpetion_notifier.php depends on qdmail.php. Then, add the following code in whichever controller you want to generate error emails (typically AppController). (Change “abc@example.com” to the recipient’s mail address) <?php class AppControll

