Skip to content

Instantly share code, notes, and snippets.

@fenneh
Created May 1, 2012 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fenneh/2568488 to your computer and use it in GitHub Desktop.
Save fenneh/2568488 to your computer and use it in GitHub Desktop.
Powershell E-Mail
$smtp = "nice.smtp.server.brok"
$from = "Test@Testing.com"
$to = "Self@DismantleRepair.me"
$subject = "Interesting subject~!"
$body = "Nice Curves!"
Send-Mailmessage -SmtpServer $smtp -From $from -To $to -Subject $subject -Body $body
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment