Hello,
First of all, what code I am pasting here is total un-upgrade safe. Which means, next time you do upgrade your SugarCRM version, the changes will be overwritten. 2 ways, you write logic hook(which is impossible for you) and second, each time you upgrade the system, without fail, write this change again.
open data/SugarBean.php and go to line # 1619(as in version CE 6.1GA) and see if you have if($sendEmail && !$notify_mail->Send()) { on line # 1620, if not search for the same line and right above that, paste code below
PHP Code:
$ccUser = new User();
$ccUser->retrieve(<USER_ID>);
$notify_mail->AddCC($ccUser->emailAddress->getPrimaryAddress($ccUser));
Now, change <USER_ID> to the ID of the manager user.
Bookmarks