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)
$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