Use the pipe symbol to indicate “or”:
/a@(foo|bar|baz)\b/
If you don’t want the capture-group, use the non-capturing grouping symbol:
/a@(?:foo|bar|baz)\b/
(Of course I’m assuming “a” is OK for the front of the email address! You should replace that with a suitable regex.)