public function PHPMailer::clearCCs

5.x PHPMailer.php public PHPMailer::clearCCs()

Clear all CC recipients.

File

inc/PHPMailer/src/PHPMailer.php, line 3622

Class

PHPMailer
PHPMailer - PHP email creation and transport class.

Namespace

PHPMailer\PHPMailer

Code

public function clearCCs() 
 {
  foreach ($this->cc as $cc) {
    unset($this->all_recipients [strtolower($cc [0])]);
  }
  $this->cc = [];
  $this->clearQueuedAddresses('cc');
}