Posted On June 11, 2020

PowerShell: Outdated Method of Sending Emails

kimconnect 0 comments
blog.KimConnect.com >> Codes >> PowerShell: Outdated Method of Sending Emails
# Credentials section
$emailFrom = "[email protected]"
$password = "eatYourSalad!" | ConvertTo-SecureString -AsPlainText -Force # plaintext password
#$EncryptedPasswordFile='c:\scripts\encryptedPasswordFile'
#$password = Get-Content -Path $EncryptedPasswordFile | ConvertTo-SecureString

# Contents section
$emailTo = "[email protected]"
$emailMessage = New-Object System.Net.Mail.MailMessage( $emailFrom , $emailTo )
#$emailcc="[email protected]"
#$emailMessage.cc.add($emailcc)
$emailMessage.Subject = "test email" 
$emailMessage.IsBodyHtml = $true
$emailMessage.Body = "test email please delete"

# Sendmail action
$smtpServer = "smtp.office365.com"
$port = "587" 
$smtpClient = New-Object System.Net.Mail.SmtpClient( $smtpServer , $port )
$smtpClient.EnableSsl = $True
$smtpClient.Credentials = New-Object System.Net.NetworkCredential( $emailFrom , $password );
$smtpClient.Send( $emailMessage )

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Create Desktop Application with Electron using JavaScript

Electron packager > get release build folder cd testappnpm initdescription: calculator.jsauthor: kimconnect.com npm install --save…

PowerShell: Convert CSV Into HashTable

This is an illustration of a function to convert a set of CSV contents into…

WordPress Custom CSS for Tables

WordPress themes can be customized, and one of the common practice is to add CSS…