hi
you can use the mailmessage and smtpmail classes in the System.Web.Mail
MailMessage mailMsg = new MailMessage();
mailMsg .From = "(e-mail address removed)";
mailMsg .To = "(e-mail address removed)";
mailMsg .Cc = "(e-mail address removed)"";
mailMsg .Bcc = "(e-mail address removed)";
mailMsg .BodyFormat= MailFormat.Html;
mailMsg .Subject = "SubjectOfTheMailString";
mailMsg .Body = "BodyOfTheMailString from the database";
SmtpMail.Send(mailMsg );
hope this will help
regards
Ansil
Technopark Trivandrum