Skip to content

Instantly share code, notes, and snippets.

@ernestohs
Created May 8, 2013 19:46
Show Gist options
  • Save ernestohs/5543100 to your computer and use it in GitHub Desktop.
Save ernestohs/5543100 to your computer and use it in GitHub Desktop.
$mail = New-Object System.Net.Mail.MailMessage
$mail.From = New-Object System.Net.Mail.MailAddress($from);
$mail.To.Add($to);
$mail.Subject = $subject;
$mail.Body = $body;
$smtp = New-Object System.Net.Mail.SmtpClient($smtpUrl);
$smtp.credentials = New-Object System.Net.NetworkCredential($user, $password);
$smtp.Send($mail);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment