function Message::getPersonalRecipient
Returns the user this message is being sent to.
Return value
\Drupal\user\UserInterface The user entity of the recipient, NULL if this is not a personal message.
Overrides MessageInterface::getPersonalRecipient
File
- 
              core/
modules/ contact/ src/ Entity/ Message.php, line 131  
Class
- Message
 - Defines the contact message entity.
 
Namespace
Drupal\contact\EntityCode
public function getPersonalRecipient() {
  if ($this->isPersonal()) {
    return $this->get('recipient')->entity;
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.