Ask a Question related to ASP.NET General, Design and Development.
-
Brent #1
Problem sending mail on Server 2003 "SendUsing" configuration is invalid
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
Brent Guest
-
cfprocparam sending "???????" to SQL Server
I have a SQL Server stored procedure that expects an nvarchar parameter. The cfprocparam is sending Russian characters, but the stored proc seems... -
Server.CreateObject("MSWC.Tools") fails in Windows 2003 server?
hello all, I hope you all are fine and doing well. I'm finding this error when i do Server.CreateObject("MSWC.Tools") in ASP using interdev. I... -
crystal report "logon failed" on windows server 2003
Hi all, I encountered a crystal report deployment problem. I make reports with Crystal Report for Visual Studio .NET 2003. It works fine in... -
Domain does not show up as a "location" for choosing users (server 2003)
I have a windows 2003 server. I added a new Windows 2003 server as a member server. However when I try to set permissions on a folder on this 2003... -
Windows Server 2003/IIS 6.0/ASP.NET "Could not find a part of the path"
I have an ASP.NET web application running on a load-balanced Windows Server 2003 web farm running IIS 6.0, using Active Directory authentication. ... -
S. Justin Gengo #2
Re: Problem sending mail on Server 2003 "SendUsing" configuration is invalid
Brent,
You need to specify which server should send the email
SmtpMail.SmtpServer = "[your mail server here]"
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Brent" <Brent@Brent.com> wrote in message
news:vji31ucippfcf9@corp.supernews.com...2000,> Hi, I have a C# asp.net app that sent mail fine on server 2000 or win'SendUsing'> but now I moved it to our new 2003 box, and it's giving me "The> 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
>
>
S. Justin Gengo Guest
-
Brent #3
Re: Problem sending mail on Server 2003 "SendUsing" configuration is invalid
Ya, I just found that out before I checked this. Thanks anyway. Interesting
that it was not required on server 2000/win2000.
"S. Justin Gengo" <sjgengo@aboutfortunate.com> wrote in message
news:etP2QKPYDHA.2344@TK2MSFTNGP09.phx.gbl...> Brent,
>
> You need to specify which server should send the email
>
> SmtpMail.SmtpServer = "[your mail server here]"
>
> Sincerely,
>
> --
> S. Justin Gengo, MCP
> Web Developer
>
> Free code library at:
> [url]www.aboutfortunate.com[/url]
>
> "Out of chaos comes order."
> Nietzche
>
>
> "Brent" <Brent@Brent.com> wrote in message
> news:vji31ucippfcf9@corp.supernews.com...> 2000,> > Hi, I have a C# asp.net app that sent mail fine on server 2000 or win> 'SendUsing'> > but now I moved it to our new 2003 box, and it's giving me "The>> > 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
> >
> >
>
Brent Guest



Reply With Quote

