I was able to stop mass emails going out for mass updates by commenting out the following code from the include/MassUpdate.php file; it starts around line 300 in my copy:
PHP Code:
if (isset( $this->sugarbean->assigned_user_id)) {
$old_assigned_user_id = $this->sugarbean->assigned_user_id;
if (!empty($_POST['assigned_user_id'])
&& ($old_assigned_user_id != $_POST['assigned_user_id'])
&& ($_POST['assigned_user_id'] != $current_user->id)) {
$check_notify = TRUE;
}
}
I got this suggestion (after I started this thread) from Supressing mass update e-mails in 6.1 - SugarCRM Forums.
Hope this helps.
marc
Bookmarks