public function EasyEmail::isSent in Easy Email 8
Same name and namespace in other branches
- 2.0.x src/Entity/EasyEmail.php \Drupal\easy_email\Entity\EasyEmail::isSent()
Returns the Email sent status.
Return value
bool TRUE if the Email is sent.
Overrides EasyEmailInterface::isSent
File
- src/
Entity/ EasyEmail.php, line 795
Class
- EasyEmail
- Defines the Email entity.
Namespace
Drupal\easy_email\EntityCode
public function isSent() {
return (bool) $this
->get('sent')->value;
}