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
- Defines the email entity class.
Namespace
Drupal\commerce_email\EntityCode
public function setBcc($bcc) {
$this->bcc = $bcc;
return $this;
}