Saturday, August 20, 2016

PowerShell - Send Email

# Send email
Send-MailMessage -SmtpServer "smtp.corp.org" -to "you@yourcorp.net" -from "powershell@hostname.domain.corp.org" -subject "Test PowerShell email 1" -body "This is my body"

# Send email with an attachment
$body = "This is the long-winded message."
$file = "c:\temp\file.txt"

Send-MailMessage -SmtpServer "smtp.corp.org" -to "you@yourcorp.net" -from "powershell@hostname.domain.corp.org" -subject "Test PowerShell email 2" -body $body -Attachments $file