EmailVerify.NET - Validating multiple e-mail addresses at once from Windows PowerShell
This command takes a couple of e-mail addresses from the pipeline and validates them up to the mailbox level, returning just the items which pass the verification.
'me@example.com', 'you@example.com' |
? { (Verify-EmailAddress $_ -Level MailBox).IsSuccess }