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: Change Process Priority Level

Most programs would launch with normal priories and trigger child processes with varying priority levels,…

getDCTimeSources

$domain=(Get-ADDomain).DNSRoot $dcs=(Get-ADDomainController -Filter * -Server $domain).Hostname $dcTimeSources=@() foreach ($dc in $dcs) { #$timeSource=w32tm /query /computer:$dc…

Microsoft SQL Cloning Database to a Different DB Name

# User defined variables $sourceSqlServer='DEV-SQL01' $sourceDatabaseName='TEST_MSCRM' $sourceSaCredential=$(get-credential) $destinationSqlServer='DEV-SQL01' $destinationDatabaseName='Test_MSCRM' $destinationSaCredential=$(get-credential) function copyDatabase{ param( $sourceSqlServer, $sourceDatabaseName,…