Array for if loop

Hi Guys

Does anyone have an example where I can iterate through an array using a for or for if loop?

Would like to use this to generate automated emails.

Cheers

You want a ForEach loop.

ForEach ($item in $array) {

variable $item contains one thing from $array

}

PowerShell does not have a “for if” loop. Run “help about_foreach” in the shell for more.