B
Brent
Hi, I have a C# asp.net app that sent mail fine on server 2000 or win 2000,
but now I moved it to our new 2003 box, and it's giving me "The 'SendUsing'
configuration is invalid"
This is the code now...
MailMessage mail = new MailMessage();
mail.From = from;
mail.To = email;
mail.Subject = subject;
mail.Body = body;
mail.BodyFormat = MailFormat.Html;
if(email!="")
SmtpMail.Send(mail);
Please help.
Thanks,
Brent
but now I moved it to our new 2003 box, and it's giving me "The 'SendUsing'
configuration is invalid"
This is the code now...
MailMessage mail = new MailMessage();
mail.From = from;
mail.To = email;
mail.Subject = subject;
mail.Body = body;
mail.BodyFormat = MailFormat.Html;
if(email!="")
SmtpMail.Send(mail);
Please help.
Thanks,
Brent