Here is the real solution...
Hi,
If you want all department members receive the alert email, then you have to assign "$alertstaff" parameter in create() function with "true" value.
Open \scp\tickets.php, and FIND:
if(($ticket=Ticket:($_POST,$errors,'staff',isset($_POST)?true,false))){
REPLACE WITH:
if(($ticket=Ticket:($_POST,$errors,'staff',isset($_POST)?true,true))){
You can check this create() function in \include\class.ticket.php file. Default of $alertstaff is "true". Since this function called from \scp\tickets.php file and the $alertstaff assigned with "false" value, then the alert email never received by department members. :)
But, as a matter of fact, if client open a new ticket, the alert email still received by department members, even $alertstaff parameter assigned with "false" value. I hope this information is helpful for you.
I have tested the change, and now department members also receive the alert email. Cheers!
Best regards,
Masino Sinaga