While updating a nuBuilder Forte project to the latest version, I noticed that emails do no reach the recipients that are in CC and BCC anyomore. Taking a closer look at the function nuSendEMail(), I noticed that although nuSendEmails takes a CC and BCC parameters, nuEMail() doesn't.
Is there a reason for that? While I'm waiting for an answer, I'll modify the function so that CC and BCC work again.
Code: Select all
function nuSendEmail($to, $from, $fromname, $content, $subject, $filelist, $html = false, $cc = "", $bcc = "", $reply_to_addresses = array()) {
// nuSendEmail function is being retired and replaced with nuSendEmail
$to_list = explode(',',$to);
return nuEmail($to_list,$from,$fromname,$content,$subject,$filelist,$html,$reply_to_addresses);
}