Possible Duplicate:
How to check if the email is valid?
Easy way to validate email just use type="email"
Example
<form>
<input type="email" name="email">
<input type="submit" name="submit">
</form>
filter_var('test@test.com', FILTER_VALIDATE_EMAIL)