Essayez ceci, remplissez DB_NAME, DB_USER_NAME et DB_USER_PASS avec vos informations d'identification de connexion ou utilisez la variable $con si tout est correctement configuré en tant qu'objet PDO :
$con = new PDO( 'mysql:host=localhost;dbname=DB_NAME;charset=UTF-8', 'DB_USER_NAME', 'DB_USER_PASS' );
$query = $con->prepare( "SELECT `email` FROM `tbl_name` WHERE `email` = ?" );
$query->bindValue( 1, $email );
$query->execute();
if( $query->rowCount() > 0 ) { # If rows are found for query
echo "Email found!";
}
else {
echo "Email not found!";
}