Here is a quick snippet to check whether the user is exists or not by email_address in WordPress.
if( get_user_by( 'email', $email_address ) == false )
{
// The user doesn't exist
}
else
{
// The user exists
}
Have any doubt, then comment here!