Send an Email With Powershell →
PowerShell v2 has what seems to still be a relativley unknown cmdlet that allows you to send email. Here is an example of how to use it:
Send-MailMessage -To user@contoso.com ` -From user@fabrikam.com ` -Subject "Test" ` -Body "Test" ` -SmtpServer smtp.domain.com