powershell 通过powershell发送电子邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 通过powershell发送电子邮件相关的知识,希望对你有一定的参考价值。

$finished = Get-Date
#SMTP server name
$smtpServer = "OPWEXC02.opwftg.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 = "no_reply@opwftg.com"
$msg.To.Add("mikegritton@opwftg.com")
$msg.subject = "EDM Scan Finished"
$msg.body = "SharePoint SiteMap successfully created. Start Time: " + $started.ToString() + " End time: " + $finished.ToString() + ". Files scanned: " + $Cnt.ToString()

#Sending email 
$smtp.Send($msg)

以上是关于powershell 通过powershell发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章

PowerShell小技巧:通过Powershell 发送消息给企业微信机器人

powershell 通过SMTP发送邮件

为啥我的 powershell 没有读取我通过网络流发送的内容

Powershell 脚本无法使用任务计划程序通过 Outlook 发送电子邮件

C#/Powershell 发送组合键

Powershell EWS 从共享邮箱发送电子邮件