You are here

public function Email::setBcc in Commerce Email 8

Sets the "BCC" address.

Parameters

string $bcc: The "BCC" address.

Return value

$this

Overrides EmailInterface::setBcc

File

src/Entity/Email.php, line 252

Class

Email
Defines the email entity class.

Namespace

Drupal\commerce_email\Entity

Code

public function setBcc($bcc) {
  $this->bcc = $bcc;
  return $this;
}