I trying to send mail via zoho smtp.
I using ASP.NET. Here is setting in web.config.
- <system.net>
- <mailSettings>
- <smtp deliveryMethod="Network" from="sale@siamwarzone.com">
- <network host="smtp.zoho.com" userName="sale@siamwarzone.com" password="{mypassword}" port="465" defaultCredentials="false" enableSsl="true" />
- </smtp>
- </mailSettings>
- </system.net>
When i send, it wait for long time, then throw exception --> "Unable to read data from the transport connection: net_io_connectionclosed".
I use the same code, but gmail account. It's work well.
How can i solve this problem, please help.