Skip to content

Instantly share code, notes, and snippets.

@aggieben
Created September 5, 2012 19:55
Show Gist options
  • Select an option

  • Save aggieben/3643522 to your computer and use it in GitHub Desktop.

Select an option

Save aggieben/3643522 to your computer and use it in GitHub Desktop.
Send email with PowerShell
$mail = New-Object System.Net.Mail.SmtpClient("smtp.geusnet.com", 25)
$mail.Send("aggieben@gmail.com", "bcollins@praecoemailtest.cloudap...", "testing kato", "blah")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment