You are here

public function OrderType::setReceiptBcc in Commerce Core 8.2

Sets the receipt BCC email.

Parameters

string $receipt_bcc: The receipt BCC email.

Return value

$this

Overrides OrderTypeInterface::setReceiptBcc

File

modules/order/src/Entity/OrderType.php, line 206

Class

OrderType
Defines the order type entity class.

Namespace

Drupal\commerce_order\Entity

Code

public function setReceiptBcc($receipt_bcc) {
  $this->receiptBcc = $receipt_bcc;
  return $this;
}