You are here

public function Email::getRecipientName in Courier 2.x

Same name and namespace in other branches
  1. 8 src/Entity/Email.php \Drupal\courier\Entity\Email::getRecipientName()

Get the name of the recipient.

Return value

string The name of the recipient.

Overrides EmailInterface::getRecipientName

File

src/Entity/Email.php, line 59

Class

Email
Defines storage for a composed email.

Namespace

Drupal\courier\Entity

Code

public function getRecipientName() {
  return $this
    ->get('name')->value;
}