public function EasyEmail::addBCCAddress in Easy Email 8
Same name and namespace in other branches
- 2.0.x src/Entity/EasyEmail.php \Drupal\easy_email\Entity\EasyEmail::addBCCAddress()
@inheritDoc
Overrides EasyEmailInterface::addBCCAddress
File
- src/
Entity/ EasyEmail.php, line 493
Class
- EasyEmail
- Defines the Email entity.
Namespace
Drupal\easy_email\EntityCode
public function addBCCAddress($address) {
if ($this
->hasField('bcc_address')) {
return $this
->addTextValueToList($address, 'bcc_address');
}
return $this;
}