I changed the function send in class.email.php to let is send to Bcc.
Everything works but somehow the e-mail to Bcc or Cc are not sent out. I changed the header:
$headers = array ('From' => $from,
'To' => $to,
'Bcc' => $bcc,
'Subject' => $subject,
'Date'=>date("D , d M Y H O"),
'Message-ID' =>'getEmail().'>',
'X-Mailer' =>'osTicket v 1.6',
'Content-Type' => 'text/html; charset="UTF-8"'
);
In the e-mail of the receipient (To) the Bcc is showed but it does not receive the message?
Can someone help?