Server
Accounts.findUserByEmail(email)
import { Accounts } from 'meteor/accounts-base'
Source Finds the user with the specified email. First tries to match email case sensitively; if that fails, it tries case insensitively; but if more than one user matches the case insensitive search, it returns null.
Arguments
- email String
-
The email address to look for
Please login to continue.