How to configure SMTPClientin ASP.net using C # to send email with the proxy address provided? or send by discovery of the default system proxy
I used the following code in web.configbut did not work
<system.net>
<defaultProxy enabled="true">
<proxy bypassonlocal="False" proxyaddress="http://192.168.101.3:8080/" />
</defaultProxy>
</system.net>
source
share