Problems sending email

Problems sending email

Hi,

I'm having trouble sending emails through my website. I keep getting the following error:
'The operation has timed out..."

I'm using .net 4.5 and I've tried using CDOSYS but that didn't work either. Any ideas?

Thanks!

Here are the current settings:
  1. Web.Config

    <mailSettings>

          <smtp deliveryMethod="Network">

            <network host="smtp.zoho.com" port="465" userName="**********" password="***********" defaultCredentials="false" enableSsl="true"/>

          </smtp>


    Code Behind

    SmtpClient mysmtp = new SmtpClient();

    mysmtp.Send(custEmail);