PHPMailer\PHPMailer\PHPMailer::clearCCs PHP Méthode

clearCCs() public méthode

Clear all CC recipients.
public clearCCs ( ) : void
Résultat void
    public function clearCCs()
    {
        foreach ($this->cc as $cc) {
            unset($this->all_recipients[strtolower($cc[0])]);
        }
        $this->cc = [];
        $this->clearQueuedAddresses('cc');
    }