PowerShell ile Nasıl Mail Gönderilir?

Resul Coskun 9 Ağustos 2022 16:25

Ç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

Bir yanıt yazın

Yorumlar (0)

Bu yazıya ait yorum bulunamadı. İlk yorumu sen yapmak ister misin?