Sending Email from Powershell

The Powershell comand to send email.

$smtpServer = "0.0.0.0"
$smtpFrom = "from@gmail.com"
$smtpTo = "to@gmail.com"
$messageSubject = "Subject of the email"
$messageBody = "Body of the email"

$smtp = New-Object Net.Mail.SmtpClient($smtpServer)
$smtp.Send($smtpFrom,$smtpTo,$messagesubject,$messagebody)

Comments

Popular posts from this blog

Error : ID4243: Could not create a SecurityToken.

MVC - Looping through the model properties from cshtml