Written by 4:32 pm Microsoft, PowerShell, Windows, Windows Server • 5 Comments

Send E-Mail from Powershell

Powershell Header

This is a small script which you can use to send E-Mail from Windows Powershell. This script has an hardcoded password variable because this solution is mostly used for automation. But you could also use the get-credentials command to get the credentials from a user.

# Configuration
$emailFrom = "[email protected]"
$emailTo = "[email protected]"
$emailSubject = "my subject"
$emailMessage = "my message"
$smtpServer = "mail.server.com"
$smtpUserName = "username" # This could be also in e-mail address format
$smtpPassword = "password"
$smtpDomain = ""
 
# SMTP Object
$smtp = New-Object System.Net.Mail.SmtpClient($smtpServer)
$mailCredentials = New-Object System.Net.NetworkCredential
$mailCredentials.Domain = $smtpDomain
$mailCredentials.UserName = $smtpUserName
$mailCredentials.Password = $smtpPassword
$smtp.Credentials = $mailCredentials
 
# Send E-Mail
$smtp.Send($emailFrom, $emailTo, $emailSubject, $emailMessage)

Update:

Thanks to Jeffery Hicks for correcting me, since Powershell v2 there is a much easier way to send a Mail with the Send-MailMessage cmdlet. http://go.microsoft.com/fwlink/?LinkID=135256

 

Tags: , , , , , , , , Last modified: September 7, 2011
Close Search Window
Close