If you don't want it to match perfect email addresses, don't use a regular expression that matches perfect email addresses.
The regular expression you are using will match on the start of the line (^) and the end of the line ($), so if you remove those it will not filter with them.