Search code examples
yiiyii-extensions

Yii Framework: Send mail to multiple recipients with YiiMailMessage


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]");

Solution

  • You have to use an array of recipients:

    $message->cc=(array("[email protected]","[email protected]"));