How to send multiple email with cc using Codeigniter?
try to use , seperated email in $this->email->cc function like this .
$this->email->cc('[email protected],[email protected],[email protected]');
you can also use like this
$this->email->to('[email protected], [email protected], [email protected]');
for email reference follow the link Here