SMTP virtual server on win xp??

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

  1. #1

    Default Re: SMTP virtual server on win xp??

    Kevin,

    Usual cause if SMTP does not allow relay. You have to specifically
    enable this through the IIS console.

    I send mail from an XP this way - it doesn't seem to make any
    difference if DHCP or static addresses used.

    BTW - you don't have to use the local SMTP server to send mail from an
    ASP page, you can use any SMTP server you can relay through, for
    example your company's mail server or ISP server like so:

    SmtpMail.SmtpServer = "smtp.myisp.com";
    SmtpMail.Send( mail );

    HTH
    Charles

    "kevin" <kyu@nrcan.gc.ca> wrote in message
    news:#q5BEdEWDHA.2224@TK2MSFTNGP10.phx.gbl...
    > what is the requirement for asp.net to send email throught
    localhost? I try
    > to send mail from asp.net page, but got exception, then I found that
    the
    > SMTP virtual server is not started and the xp box use DHCP to get
    its ip, is
    > that the cause? theoretically it need a static ip to run smtp, but
    is it
    > possible to run it with dump ip like 192.168..?
    >
    > thanks
    >
    >
    >

    Charles Rumbold Guest

  2. Similar Questions and Discussions

    1. Can't connect to SMTP server
      When I try to send cfmail from one of 3 CF Servers in a domain, I get the following exception. It is happening for all cfmail from this particular...
    2. could not connect to SMTP server from sql server using JMail, xp_smtp_sendmail or sp_send_cdosysmail
      I am trying to send an email message from sql server using the JMail component from dimac.net. I was able to use the stored procudure sp_send_mail...
    3. remote SMTP server
      Hi, I'm trying to setup PHP so it will use a remote SMTP server. I'm going to sound like a newbie but how? I know you need to alter php.ini, change...
    4. SMTP Server
      hi, i got windows XP operating system ... i got problem with sending email... my SMTP is not able to send emails. its getting error like...
    5. Using SMTP through a proxy server
      Mario542 <member17678@dbforums.com> wrote: You don't. More specifically, you can't talk SMTP over an HTTP proxy without encapsulating it. Once...
  3. #2

    Default Re: SMTP virtual server on win xp??


    Thanks Charles. it works now.


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    neo ew 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