を高く評価しますか?
あなたは電子メールを送信するためにランブックを使用したい場合は、まずSMTPサーバを持っている必要があります。
その後、我々はそれを行うにはPowerShellコマンドを使用することができます。Send-MailMessage
について
Send-MailMessage
詳しい情報は、このlinkを参照してください。
もう一つの方法は、我々はここでは、メールを送信するためにAzureのSendGridサービスを使用することができますPowerShellスクリプトさ:
$Username ="YourUserName"
$Password = ConvertTo-SecureString "AddYourPasswordHere" -AsPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential $Username, $Password
$SMTPServer = "smtp.sendgrid.net"
$EmailFrom = "[email protected]"
[string[]]$EmailTo = "AddToEmailAddressessHere. To add multiple use comma separated values."
$Subject = "Sending sample email using SendGrid Azure and PowerShell"
$Body = "This is sample email sent using Sendgrid account create on Microsoft Azure. The script written is easy to use."
Send-MailMessage -smtpServer $SMTPServer -Credential $credential -Usessl -Port 587 -from $EmailFrom -to $EmailTo -subject $Subject -Body $Body -BodyAsHtml
Write-Output "Email sent succesfully."
は約Azureのsendgridサービスを作成し、このarticleを参照してください。
Azureアクティビティログアラートを使用すると、アクティビティログアラートの作成についての詳細は、linkを参照してください。
これが役に立ちます。
これは機能しますか?あなたがより多くの助けを必要とする場合私に知らせてください:) –
返事を残して申し訳ありません。はい、それはうまくいくでしょう、ありがとうございます:)ハッピーニューイヤーも。 – user9118621
@ user9118621ハッピーニューイヤー:) –