-1
發送電子郵件的方法運行正常,但有時它顯示了這個消息:Authentication failed because the remote party has closed the transport stream.
驗證失敗,因爲遠程方已關閉傳輸流C#發送電子郵件
它通常發生時有X509Certificates
證書中的另一種方法被使用...電子郵件提供商的配置是可以的。
有人可以幫助我嗎?
感謝
發送電子郵件的方法運行正常,但有時它顯示了這個消息:Authentication failed because the remote party has closed the transport stream.
驗證失敗,因爲遠程方已關閉傳輸流C#發送電子郵件
它通常發生時有X509Certificates
證書中的另一種方法被使用...電子郵件提供商的配置是可以的。
有人可以幫助我嗎?
感謝
昨天我解決了這個問題,使用下面的代碼:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls;
此代碼我發現這裏Default SecurityProtocol in .NET 4.5
我認爲這個問題是框架的版本,我的計劃是使用3.5版本...
感謝