Problem sending mail on Server 2003 "SendUsing" configuration is invalid

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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. ...
  3. #2

    Default 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...
    > 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
    >
    >

    S. Justin Gengo Guest

  4. #3

    Default 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...
    > > 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139