Sua
array
não está bem construído, use o seguinte:while ($row = mysqli_fetch_array($getnotify)) {
$notifyemailscontent[$row['email']] = "{$row['firstname']} {$row['lastname']}";
}
Então, dentro do
phpmailer
quadra:foreach($notifyemailscontent as $email => $name)
{
$mail->AddCC($email, $name);
}