function user_load_by_mail in Drupal 8
Same name and namespace in other branches
- 7 modules/user/user.module \user_load_by_mail()
- 9 core/modules/user/user.module \user_load_by_mail()
Fetches a user object by email address.
Parameters
string $mail: String with the account's email address.
Return value
\Drupal\user\UserInterface|false A user entity upon successful user load, or FALSE if user cannot be loaded.
See also
\Drupal\user\Entity\User::loadMultiple()
1 call to user_load_by_mail()
- _update_cron_notify in core/
modules/ update/ update.fetch.inc - Performs any notifications that should be done once cron fetches new data.
File
- core/
modules/ user/ user.module, line 268 - Enables the user registration and login system.
Code
function user_load_by_mail($mail) {
$users = \Drupal::entityTypeManager()
->getStorage('user')
->loadByProperties([
'mail' => $mail,
]);
return $users ? reset($users) : FALSE;
}