You are here

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

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

Parameters

string $fromName:

Return value

$this

Overrides EasyEmailTypeInterface::setFromName

File

src/Entity/EasyEmailType.php, line 311

Class

EasyEmailType
Defines the Email template entity.

Namespace

Drupal\easy_email\Entity

Code

public function setFromName($fromName) {
  $this->fromName = $fromName;
  return $this;
}