Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save constructor-igor/f6cae38a034e680725ae to your computer and use it in GitHub Desktop.
Save constructor-igor/f6cae38a034e680725ae to your computer and use it in GitHub Desktop.
$Outlook = New-Object -ComObject Outlook.Application
PM> $Mail = $Outlook.CreateItem(0)
PM> $Mail.to = "<email>"
PM> $Mail.Body = $dte.Debugger.CurrentStackFrame.Locals | ForEach-Object {$_.Name, $_.Type}
PM> $Mail.Send()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment