1While enqueuing jobs from TestController use
2
3CakeResque::enqueue('default',
4 'CakeResque.MailShell', //difference is here
5 array('sendMail',
6 'test@gmail.com',
7 'Test Email',
8 'Hi this it test email.'));
9