Created
May 1, 2012 14:49
-
-
Save fenneh/2568488 to your computer and use it in GitHub Desktop.
Powershell E-Mail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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