How to send email using PowerShell script

Pubblicato il: 19 maggio 2020
sul canale di: 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


In questa pagina del sito puoi guardare il video online How to send email using PowerShell script della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Dignesh Patel 19 maggio 2020, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 1,187 volte e gli è piaciuto 12 spettatori. Buona visione!