The highest number? I'm not sure I understand what you're after. Wouldn't the email field be a text data type, as opposed to a numerical data type?
If for some reason you've named a numerical field "email", you could just for SELECT * FROM `users` ORDER BY `email` DESC LIMIT 1; or just SELECT MAX(`email`) FROM `users`;. That would give you the highest value in a numerical column.