如何在Addcc中通过php变量发送多封电子邮件

From $list i am getting all the emails that are posted by form after using explode

$list = explode(',', $guest_email);



    foreach ($list as $k => $v) {

        $mail = new PHPmailer();
        $mail->From = $smtp_user;
        $mail->FromName = $fromname;
        $mail->Mailer   = "mail";
        $mail->Subject = "";
        $mail->IsHTML(true);

        //$mail->IsSMTP();
        $mail->SMTPDebug = 1;
        $mail->SMTPAuth = ;
        $mail->SMTPSecure = '';
        $mail->Host = $smtp;
        $mail->Port = $port;

        $mail->Password = $sm;
        $mail->Username = $sm;

        $mail->Body = $bodyContent;

in below line the mail are going to all posted email address, in next line i want to add all the emails in cc, but it is not working

$mail->AddAddress($v);
$mail->Addcc($v)
$mail->AddReplyTo($smtp_user);

if(!$mail->Send()){
    echo "Mailer Error: " . $mail->ErrorInfo;
}else{
    echo "SUCCESS";
}
}

how to send all email in $mail->Addcc($v)