There is no good (and realistic, see Christian Vest Hansen's excellent reference) regular expression for this problem. The grammar (specified in RFC 5322) is too complicated for that. Use a real parser or, better, validate by trying (to send a message).
For PHP, there is Validate an E-Mail Address with PHP, the Right Way for which I quote "There is some danger that common usage and widespread sloppy coding will establish a de facto standard for e-mail addresses that is more restrictive than the recorded formal standard.".
See also Validating Email Addresses, including the comments. Or Comparing E-mail Address Validating Regular Expressions.
