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
En esta página del sitio puede ver el video en línea How to send email using PowerShell script de Duración hora minuto segunda en buena calidad , que subió el usuario Dignesh Patel 19 mayo 2020, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 1,187 veces y le gustó 12 a los espectadores. Disfruta viendo!