$subscriber[] = array('email' => array("email" => "curtis@gmail.com", "euid" => "", "leid" => ""), 'email_type'=>'html', 'merge_vars'=>array('FNAME'=>'Usario1', 'LNAME'=>'Apellido1'));
<цикл>
$users[] = array(
'email' => array(
'email' => $row['user_email']
),
'merge_vars' => array(
'FNAME' => $row['full_name'],
'LNAME' => $row['last_name']
)
);
</цикл>
$result = $mc->lists->batchSubscribe(
$list_id,
$users,
false, //do not send confirmation e-mail
true //update profile in case of already added e-mail
);