How to send email using PowerShell script

Published: 19 May 2020
on channel: Dignesh Patel
1,187
12

Copy below script in notepad, change the required parameter and save it as SendMail.ps1

[System.Net.ServicePointManager]::SecurityProtocol = 'Tls,TLS11,TLS12'
$From = "Sender email address"
$To = "recipient’s email address"
$Cc = "cc recipient’s email address"
$Subject = "Your Subject"
$Body = "Message Body"
$SMTPServer = "SMTP Server address"
$SMTPPort = "SMTP Server port"
Send-MailMessage -From $From -to $To -Cc $Cc -Subject $Subject -Body $Body -SmtpServer $SMTPServer -port $SMTPPort -UseSsl -Credential (Get-Credential)

Note :

Turn On Less secure app in Gmail - https://support.google.com/accounts/a...

Create App Password in Gmail -
https://support.google.com/accounts/a...

#powershell #emailscript


On this page of the site you can watch the video online How to send email using PowerShell script with a duration of hours minute second in good quality, which was uploaded by the user Dignesh Patel 19 May 2020, share the link with friends and acquaintances, this video has already been watched 1,187 times on youtube and it was liked by 12 viewers. Enjoy your viewing!