MailMessage m = new MailMessage(); m.From = new MailAddress("ir@sharejs.com", "Raja Item"); m.To.Add(new MailAddress("su@sharejs.com", "Sekaran Uma")); m.To.Add(new MailAddress("mg@sharejs.com", "Murthy Ganesh")); m.To.Add(new MailAddress("bk@sharejs.com", "Biryani Kaka")); m.Subject = "Some subject here!"; m.Body = "See the attached file."; // Send the message SmtpClient client = new SmtpClient("smtp.w3mentor.com"); client.Send(m); //csharp/7756