How to send mail using SMTP Server
using System; using System.Web.Mail; public class SmtpMailExample { public static void Main() { string FromSMTP = "from@asp.net"; string ToSMTP = "to@smtp.net"; string SubjectSMTP = "This is a SMTP Test Mail Example Message"; string BodySMTP = "Hi ."; SmtpMail.SmtpServer = "192.168.1.151"; SmtpMail.Send(FromSMTP, ToSMTP, SubjectSMTP, BodySMTP); } }