You are here

public function RngContactType::setCourierEmailField in RNG Contact 8

Set the email field to use for Courier email communications.

Parameters

string|NULL $courier_email_field: The email field to use for Courier email communications.

Return value

$this Return this contact type for chaining.

Overrides RngContactTypeInterface::setCourierEmailField

1 call to RngContactType::setCourierEmailField()
RngContactType::onDependencyRemoval in src/Entity/RngContactType.php
Informs the entity that entities it depends on will be deleted.

File

src/Entity/RngContactType.php, line 84

Class

RngContactType
Defines the contact type configuration entity.

Namespace

Drupal\rng_contact\Entity

Code

public function setCourierEmailField($courier_email_field) {
  $this->courier_email_field = $courier_email_field;
  return $this;
}