public function EasyEmail::getSentTime in Easy Email 8
Same name and namespace in other branches
- 2.0.x src/Entity/EasyEmail.php \Drupal\easy_email\Entity\EasyEmail::getSentTime()
Returns the Email sent timestamp.
Return value
int The integer timestamp of the sent time for the email
Overrides EasyEmailInterface::getSentTime
File
- src/
Entity/ EasyEmail.php, line 802
Class
- EasyEmail
- Defines the Email entity.
Namespace
Drupal\easy_email\EntityCode
public function getSentTime() {
return $this
->get('sent')->value;
}