Below is a script that can be used to send email using Powershell.
function sendMail{
Write-Host "Sending Email"
#SMTP server name $smtpServer = "smtp.xxxx.com"
#Creating a Mail object $msg = new-object Net.Mail.MailMessage
#Creating SMTP server object $smtp = new-object Net.Mail.SmtpClient($smtpServer)
#Email structure $msg.From = "fromID@xxxx.com" $msg.ReplyTo = "replyto@xxxx.com" $msg.To.Add("toID@xxxx.com") $msg.subject = "My Subject" $msg.body = "This is the email Body."
#Sending email $smtp.Send($msg) }
#Calling functionsendMail
Thanks buddy . Useful Tip
Will this work without "ADD-PSSnapin" of Microsoft exchange??
OK ... now how do we get it to send text from a file, instead of a fixed string?
$msg.body = Get-Content C:\body.txt
Sending Email
Exception calling "Send" with "1" argument(s): "The SMTP server requires a secure connection or the client was not authenticated. The server response was: Authentication required"
At line:24 char:16
+ $smtp.Send <<<< ($msg)
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : DotNetMethodException
Or you can use the cmd-let
#$cred = get-credential
send-mailMessage -to "" -subject "test" -from "" -body "" -SmtpServer "" #-credential $cred
Hi, one question, how can i load mail body from html file?
Is there a way to get a confirmation message or mail read message from the command line?