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