public function User::getEmail in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/user/src/Entity/User.php \Drupal\user\Entity\User::getEmail()
Returns the email address of this account.
Return value
string The email address.
Overrides AccountInterface::getEmail
File
- core/
modules/ user/ src/ Entity/ User.php, line 227 - Contains \Drupal\user\Entity\User.
Class
- User
- Defines the user entity class.
Namespace
Drupal\user\EntityCode
public function getEmail() {
return $this
->get('mail')->value;
}