PowerShell小技巧之使用Hotmail賬號發(fā)送郵件
更新時間:2014年09月15日 09:51:02 投稿:hebedich
這篇文章主要介紹了PowerShell使用Hotmail賬號發(fā)送郵件的方法,以及遇到報錯的時候的解決方法,希望對大家有所幫助
在低版本的PowerShell上發(fā)送郵件可以借助.NET的system.net.mail.smtpclient類。在高版本的PowerShell中可以借助現(xiàn)成的命令:Send-MailMessage
我在嘗試使用Hotmail時,遇到了一個錯誤:
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)是沒有指定端口號,應當使用:587端口號。
Send-MailMessage -Body 'test' -SmtpServer smtp.live.com -From appana@outlook.com -To 'admin@pstips.net' -Subject 'test' -UseSsl -Credential i@outlook.com -Port 587
常規(guī)錯誤排查:
郵箱是否開啟SMTP服務
賬號和密碼是否輸入正確
端口號是否正確
相關文章
Powershell 之批量獲取文件大小的實現(xiàn)代碼
這篇文章主要介紹了Powershell 之批量獲取文件大小的實現(xiàn)代碼,需要的朋友可以參考下2016-11-11PowerShell使用枚舉變量定義帶智能提示功能的函數參數
這篇文章主要介紹了PowerShell使用枚舉變量定義帶智能提示功能的函數參數,但定義后只在ISE當中有效,需要的朋友可以參考下2014-07-07