可以将SmtpClient配置为使用自签名证书吗

可以将SmtpClient配置为使用自签名证书吗

本文介绍了可以将SmtpClient配置为使用自签名证书吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我试图通过我公司的电子邮件服务器转发电子邮件。服务器将SSL与自签名证书一起使用。当我尝试使用SmtpClient发送时,我得到以下例外:

"无法从传输连接中读取数据:net_io_connectionclosed。"

我已尝试挂钩ServicePointManager.ServerCertificateValidationCallback事件,但我没有得到回调。

问候,

亚伦

Hi,

I'm attempting to relay an email through my company's emails server. The server uses SSL with a self signed certificate. When I attempt to send with SmtpClient I get an exception of:

"Unable to read data from the transport connection: net_io_connectionclosed."

I've tried hooking the ServicePointManager.ServerCertificateValidationCallback event but I don't get a callback.

Regards,

Aaron

推荐答案


这篇关于可以将SmtpClient配置为使用自签名证书吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 00:23