You are here

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

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

@inheritDoc

Overrides EasyEmailInterface::setReplyToAddress

File

src/Entity/EasyEmail.php, line 563

Class

EasyEmail
Defines the Email entity.

Namespace

Drupal\easy_email\Entity

Code

public function setReplyToAddress($reply_to_email) {
  if ($this
    ->hasField('reply_to')) {
    $this
      ->set('reply_to', $reply_to_email);
  }
  return $this;
}