powershell 使用PowerShell发送电子邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 使用PowerShell发送电子邮件相关的知识,希望对你有一定的参考价值。
# ----------------------------------------------
# Author: Romain Blanchard
# Date: 04.02.2014
# Description: Send email with PowerShell
# ----------------------------------------------
$serveur = "RBLA-SP2010-001.RBLA.com"
$expediteur = "romain@RBLA-SP2010-001.RBLA.com"
$destinataire = "test@RBLA-SP2010-001.RBLA.com"
$fichier = "D:\fichier.txt"
$objet = "Subject: Hello world!"
$texte = "Message envoyé par Script PowerShell "
$message = new-object System.Net.Mail.MailMessage $expediteur, $destinataire, $objet, $texte
$message.Attachments.Add($fichier)
$client = new-object System.Net.Mail.SmtpClient $serveur
$client.Send($message)
以上是关于powershell 使用PowerShell发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章
powershell 使用PowerShell发送电子邮件
powershell 使用Powershell发送Microsoft Teams消息
使用 PowerShell 向窗口控件发送消息
powershell 使用SendGrid从PowerShell发送电子邮件(在Azure中)
PowerShell小技巧:通过Powershell 发送消息给企业微信机器人
使用 PowerShell 发送电子邮件时是不是可以指定 Exchange 版本?