Votre array
n'est pas bien construit, utilisez ce qui suit :
while ($row = mysqli_fetch_array($getnotify)) {
$notifyemailscontent[$row['email']] = "{$row['firstname']} {$row['lastname']}";
}
Ensuite, dans le phpmailer
bloquer :
foreach($notifyemailscontent as $email => $name)
{
$mail->AddCC($email, $name);
}