You are here

public function Email::setCc in Commerce Email 8

Sets the "CC" address.

Parameters

string $cc: The "CC" address.

Return value

$this

Overrides EmailInterface::setCc

File

src/Entity/Email.php, line 237

Class

Email
Defines the email entity class.

Namespace

Drupal\commerce_email\Entity

Code

public function setCc($cc) {
  $this->cc = $cc;
  return $this;
}