cdosys

  • Thread starter Thread starter Nitin
  • Start date Start date
Try something like this:

using System.Web.Mail;

MailMessage newMail = new MailMessage();
newMail.Subject = "Subject Goes Here";
newMail.From = "(e-mail address removed)";
newMail.To = "(e-mail address removed)";
newMail.Body = "Email Message" ;
SmtpMail.Send(newMail);

I believe this sits on or uses cdosys

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top