MailMessage mail = new MailMessage();mail.From = "[email protected]"; mail.To = "[email protected]"; mail.Subject = "test"; mail.Body = "test body"; SmtpMail.SmtpServer = ""; // not sure about this...? ("www.toad.com".. or something?)// and then send the mailSmtpMail.Send(mail);Thanks Tons!!