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 - [ Ссылка ]
Create App Password in Gmail -
[ Ссылка ]
#powershell #emailscript
Ещё видео!