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

PowerShell: Invoke Backup SQL Database

Function to invoke SQL Backups on a Remote SQL Server: # invokeSqlBackup.ps1 # Version 0.0.1…

PowerShell: Use Win-SCP to Download Files from SFTP Server

Version 2: # downloadFilesViaSftp.ps1 # Version 0.0.2 # # Description: # This simple script is…

Lightbox Javascript Contents

These JavaScript codes are open source and part of many applications, such as NextGen Gallery.…