PHPMailer\PHPMailer\PHPMailer::clearBCCs PHP 메소드

clearBCCs() 공개 메소드

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