Configuring SMTP for C# Application

Configuring SMTP for C# Application

I am unable to send email for my C#application

var client = new SmtpClient
                    {
                        Host = "smtp.zoho.com",
                        Port = 465,
                        EnableSsl = true,
                        UseDefaultCredentials = false,
                        Credentials = new NetworkCredential(" no-reply@magetsi.co.zw", "mypassword  here")
                    }


I am getting a time out error