Skip to content

Instantly share code, notes, and snippets.

@amritanshu-pandey
Created April 23, 2017 08:05
Show Gist options
  • Save amritanshu-pandey/b064b534c6e7e39f93a26236076b7d5e to your computer and use it in GitHub Desktop.
Save amritanshu-pandey/b064b534c6e7e39f93a26236076b7d5e to your computer and use it in GitHub Desktop.
Send-MailMessage `
-To "test_recipient@gmail.com" `
-CC "test_cc@gmail.com" `
-Subject "Hello from Poweshell" `
-Body "Hello Receiver" `
-SmtpServer "smtp.gmail.com" `
-From "test_sender@gmail.com" `
-Port 587 `
-UseSsl `
-Credential (Import-Clixml .\credentials.xml) `
-Attachments "mail.ps1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment