Post

SMTP Server kullanımı "Powershell" - Using SMTP Server "Powershell"

SMTP Server kullanımı "Powershell" - Using SMTP Server "Powershell"

***Varsayılanda SMTP sunucusu portu, SSL kullanmadan port 25 numaralı portla, (alternatif olarakta SMTP port 26) çalışır.

PS ISE Script:

#Outlook mail sender script
#From > To
$EmailFrom = “[email protected]”
$EmailTo = “[email protected]”

$Subject = “Windows spooler servisi kapandi!"
$Body = “Servis maili Test v1”

$SMTPServer = “smtp.outlook.com#SMTP
$SMTPClient = New-Object Net.Mail.SmtpClient($SmtpServer, 587)

$SMTPClient.EnableSsl = $true

#mail and password
#password cleartext olduğu icin güvenlik riski taşır!!
$SMTPClient.Credentials = New-Object System.Net.NetworkCredential(“sendermail@outlook.com”, “passwd!!65++”);
$SMTPClient.Send($EmailFrom, $EmailTo, $Subject, $Body)

Ücretsiz olarak kullanılabilecek SMTP server listesi:

#Gmail
smtp.gmail.com SSL 465
smtp.gmail.com StartTLS 587
pop.gmail.com SSL 995

Not: POP3’ü Gmail hesap ayarlarınızdan etkinleştirmeniz gerekir.
Hesabınıza giriş yapın ve POP3’ü etkinleştirin.
Ayrıca Gmail ayarlarında “daha az güvenli uygulamaları” (üçüncü taraf uygulamaları) etkinleştirmeniz gerekir:

#Outlook.com
smtp.live.com StartTLS 587
pop3.live.com SSL 995

#Office365.com
smtp.office365.com StartTLS 587
outlook.office365.com SSL 995

#Yahoo Mail
smtp.mail.yahoo.com StartTLS 587
pop.mail.yahoo.com SSL 995

#AOL.com
smtp.aol.com
pop.aol.com

#Hotmail
smtp.live.com SSL 465
pop3.live.com SSL 995

#Zoho Mail
smtp.zoho.com SSL 465
pop.zoho.com SSL 995

#Mail.com
smtp.mail.com StartTLS 587
pop.mail.com SSL 995

#GMX.com
smtp.gmx.com StartTLS 587
pop.gmx.com SSL 995

Varsayılan Sunucu Bağlantı Noktaları:

SMTP Sunucusu (Giden Sunucu)

Sunucu tipi (Şifrelenmemiş) Kimlik doğrulama tipi (Yok) Bağlantı Noktası No 25 ve 26

Sunucu tipi (Güvenli TLS) Kimlik doğrulama tipi (StartTLS) Port No 587

Sunucu tipi (Güvenli SSL) Kimlik doğrulama tipi (SSL) Port No 465


POP3 Sunucusu (Gelen Sunucu)

Sunucu tipi (Şifrelenmemiş) Kimlik doğrulama tipi (Yok) Port No 110

Sunucu tipi (Güvenli SSL) Kimlik doğrulama tipi (SSL) Port No 995


IMAP Sunucusu (Gelen Sunucu)

Sunucu tipi (Şifrelenmemiş) Kimlik doğrulama tipi (Yok) Port No 143

Sunucu tipi (Güvenli SSL) Kimlik doğrulama tipi (SSL) Port No 993

***Genel SMTP sunucularının tümü sunucularında SSL sertifikaları kullanır.

Saygılarımla.

This post is licensed under CC BY 4.0 by the author.