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