yes, a valid email address can be used as the container for some carefully crafted strings.
get out of the "filtering" mindset and get into the "escaping" mindset. A universal "make it safe" filter simply doesn't exist.
for example, if the email address will be output to a plain text document, then nothing is needed to be done. if its being output into an html document, as a text node, then it needs to be escaped for html special characters and entitites. if it's being put into an html document, and its value will be inside of an html attribute, then very very carefull escaping would need to be performed, and it would depend on the context. if it's being used in an sql query, then it needs to be escaped via the database specific escaping function. and so on.
it's all about context of use, not content of the string. this goes for everything(not just emails or other user input), and its not just a matter of security, but it's a matter of programming correctness.
fyi, i remember the email address spec allowing quoted strings, so something like "<script>alert('xss')</script>"@example.com would be valid. the possibibilites are obvious.