PowerShell ile Nasıl Mail Gönderilir?
Çeşitli powershell otomasyonlarınızda powershell ile mail göndermek için aşağıdaki kod betiğini kullanabilirsiniz.
Powershell’de “Send-MailMessage” fonksiyonunu kullanmak için sadece mail adresi olması veya scriptin kullanılacağı sunucuya relay verilmesi yeterlidir.
$MailMessage = @{ To = "Example <[email protected]>" Bcc = "Example1 <[email protected]>", "Example2 <[email protected]>" From = "Example3 <[email protected]>" Subject = "Example Subject" Body = "This is an <b>example</b> HTML email." Smtpserver = "smtp.gmail.com" Port = 465 UseSsl = $true BodyAsHtml = $true ErrorAction = "Stop" } Send-MailMessage @MailMessage
Yorumlar (0)