smtp.Host = "smtp.zoho.com";
smtp.Port = 465;
smtp.EnableSsl = true;
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.UseDefaultCredentials = true;
smtp.Credentials = new System.Net.NetworkCredential("
xxx@xxx.com", "xxxx","mydomain.com");
Any help will be much appreciated.