PHPMailer\PHPMailer\PHPMailer::clearBCCs PHP Méthode

clearBCCs() public méthode

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