I have a powershell script that uses Write-Output to display the result of a for each loop.
I need to email the output and previously did this with VB using sendemail.exe as below
cscript //nologo script.vbs 2>&1 | sendEmail.exe -t mail@blah.co.uk -u "subject blah" -f mail@blah.co.uk -s smtpserver1.mail.co.uk
I am unable to get this working with powershell as when I run my .ps1 script it writes the output to the current console and does not pipe it to the sendemail.exe application. Do I need a different cmdlet or is it simpler to write the email function into the script?
