You are here

public function EasyEmail::getBCCAddresses in Easy Email 8

Same name and namespace in other branches
  1. 2.0.x src/Entity/EasyEmail.php \Drupal\easy_email\Entity\EasyEmail::getBCCAddresses()

@inheritDoc

Overrides EasyEmailInterface::getBCCAddresses

File

src/Entity/EasyEmail.php, line 473

Class

EasyEmail
Defines the Email entity.

Namespace

Drupal\easy_email\Entity

Code

public function getBCCAddresses() {
  if ($this
    ->hasField('bcc_address')) {
    return $this
      ->getListTextValues($this
      ->get('bcc_address'));
  }
  return NULL;
}