Ηi ,
Follow the steps listed in tmib.net and it effectively creates the field CC. When you reply the message is sent to the recipient but never reaches the email is entered in the CC.
What could be wrong?
Hi Bill,
I wrote my own mod for CC'ing and had the same issue where the CC appeared in the header but was never actually sent/received.
My solution was to create a new "recipients" array with values for To and Cc;
$recipients = array (
'To' => "$to",
'Cc' => "$cc",
);
I then modified the syntax of the send function to send $recipients instead of $to which corrected the issue.
$mail->send($recipients, $headers, $body)
My full mod (version 5.0) is posted here if you want to take a look:
http://osticket.com/forums/showthread.php?t=14164(http://osticket.com/forums/showthread.php?t=14164)