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