Skip to content

Instantly share code, notes, and snippets.

@osorionicolas
Created January 27, 2022 02:00
Show Gist options
  • Select an option

  • Save osorionicolas/43cf17ce849805095c04b0116c2bc33f to your computer and use it in GitHub Desktop.

Select an option

Save osorionicolas/43cf17ce849805095c04b0116c2bc33f to your computer and use it in GitHub Desktop.
Send email script for Powershell
$smtpServer = "smtp.gmail.com"
$mail = new-object Net.Mail.MailMessage
$mail.From = ""
$mail.To.Add("")
$mail.Subject = "Subject"
$mail.Body = "Body"
$smtp = new-object Net.Mail.SmtpClient($smtpServer, 465)
$smtp.EnableSs1 = $true
$SMTP.Credentials = New-Object System.Net.NetworkCredential(MAIL, PASSWORD)
$smtp.Send($mail)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment