You are here

public function EasyEmail::setSentTime in Easy Email 2.0.x

Same name and namespace in other branches
  1. 8 src/Entity/EasyEmail.php \Drupal\easy_email\Entity\EasyEmail::setSentTime()

Sets the sent timestamp of a Email.

Parameters

int $timestamp: The integer timestamp of the sent time for the email

Return value

\Drupal\easy_email\Entity\EasyEmailInterface The called Email entity.

Overrides EasyEmailInterface::setSentTime

File

src/Entity/EasyEmail.php, line 809

Class

EasyEmail
Defines the Email entity.

Namespace

Drupal\easy_email\Entity

Code

public function setSentTime($timestamp) {
  $this
    ->set('sent', $timestamp);
  return $this;
}