You are here

public function Message::getSenderMail in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/contact/src/Entity/Message.php \Drupal\contact\Entity\Message::getSenderMail()

Returns the email address of the sender.

Return value

string The email address of the message sender.

Overrides MessageInterface::getSenderMail

File

core/modules/contact/src/Entity/Message.php, line 72
Contains \Drupal\contact\Entity\Message.

Class

Message
Defines the contact message entity.

Namespace

Drupal\contact\Entity

Code

public function getSenderMail() {
  return $this
    ->get('mail')->value;
}