PowerShell: Send Email


I scheduled a task to send me the every day report by Email. Here is how I did by using PowerShell:

$emailFrom = Monitor@test.com
$emailTo = jackie.chen@test.com

$subject = “Everyday Report”
$body = Get-Content C:\Logs\EverydayReport.txt

$smtpServer = “SMTP.test.com”
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
$smtp.Send($emailFrom, $emailTo, $subject, $body)

Advertisement

2 thoughts on “PowerShell: Send Email

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s