I have a string that has email addresses separated by semi-colon:
$address = "foo@bar.com; boo@bar.com; zoo@bar.com"
How can I split this into an array of strings that would result as the following?
[string[]]$recipients = "foo@bar.com", "boo@bar.com", "zoo@bar.com"