You are here

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

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

@inheritDoc

Overrides EasyEmailInterface::setFromName

File

src/Entity/EasyEmail.php, line 523

Class

EasyEmail
Defines the Email entity.

Namespace

Drupal\easy_email\Entity

Code

public function setFromName($from_name) {
  if ($this
    ->hasField('from_name')) {
    $this
      ->set('from_name', $from_name);
  }
  return $this;
}