Skip to content

Instantly share code, notes, and snippets.

@constructor-igor
Created November 24, 2014 13:21
Show Gist options
  • Save constructor-igor/c36dff225128e118d08f to your computer and use it in GitHub Desktop.
Save constructor-igor/c36dff225128e118d08f to your computer and use it in GitHub Desktop.
Sending email via Outlook (powershell)
$Outlook = New-Object -ComObject Outlook.Application
$Mail = $Outlook.CreateItem(0)
$Mail.To = "boss@company.com"
$Mail.Subject = "Action"
$Mail.Body ="Pay rise please"
$Mail.Send()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment