Question

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=("mail1@gmail.com, mail2@gmail.com");
$message->cc=("mail1@gmail.com; mail2@gmail.com");
Était-ce utile?

La solution

You have to use an array of recipients:

$message->cc=(array("mail1@gmail.com","mail2@gmail.com"));

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top