I need to add multiple CC email recipients using YiiMailMessage. Recipients get them from a table.
Try these ways and does not work
$message->cc=("[email protected], [email protected]");
$message->cc=("[email protected]; [email protected]");
You have to use an array of recipients:
$message->cc=(array("[email protected]","[email protected]"));