I can’t seem to get CI to send email to multiple CC addresses. I’ve tried:
$this->email->cc('bob@xyz.com', 'bill@xyz.com');
AND
$this->email->cc('bob@xyz.com, bill@xyz.com');
Neither worked, so I tried an array:
$recipients = array(
'bob@xyz.com',
'bill@xyz.com');
$this->email->cc('$recipients');
The user guide seems pretty straightforward - what am I missing?
