PHPMailer\PHPMailer
PHPMailer::clearBCCs
Clear all BCC recipients.
Method of the class: PHPMailer{}
No Hooks.
Returns
null. Nothing (null).
Usage
$PHPMailer = new PHPMailer(); $PHPMailer->clearBCCs();
PHPMailer::clearBCCs() PHPMailer::clearBCCs code WP 7.0
public function clearBCCs()
{
foreach ($this->bcc as $bcc) {
unset($this->all_recipients[strtolower($bcc[0])]);
}
$this->bcc = [];
$this->clearQueuedAddresses('bcc');
}