在低版本的PowerShell上發(fā)送郵件可以借助.NET的system.net.mail.smtpclient類。在高版本的PowerShell中可以借助現(xiàn)成的命令:Send-MailMessage
我在嘗試使用Hotmail時(shí),遇到了一個(gè)錯(cuò)誤:
1
2
|
Send-MailMessage : The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first |
后來發(fā)現(xiàn)是沒有指定端口號,應(yīng)當(dāng)使用:587端口號。
1
|
Send-MailMessage -Body 'test' -SmtpServer smtp.live.com -From [email protected] -To '[email protected]' -Subject 'test' -UseSsl -Credential [email protected] -Port 587 |
常規(guī)錯(cuò)誤排查:
郵箱是否開啟SMTP服務(wù)
賬號和密碼是否輸入正確
端口號是否正確