Search for all the emails in your source code or HTML files
This is one usefull regular expresions to search all the emails inside source code or HTML files
grep -E -o "\b[a-zA-Z0-9.-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9.-]+\b" -r -i /var/www/
Enjoy!
Usefull regular expresions,