<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1013587" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1013587</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/cdonts-specifying-smtp-server#comment-1078777</link>
    <description> &lt;p&gt;ahhh...&lt;br /&gt;
I had search MSDN for &quot;CDONTS&quot;&lt;/p&gt;
&lt;p&gt;thx!&lt;/p&gt;
 </description>
     <pubDate>Thu, 01 Mar 2001 08:19:35 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1078777 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>CDO not CDONTS</title>
    <link>https://www.webmaster-forums.net/serverside-scripting/cdonts-specifying-smtp-server#comment-1078753</link>
    <description> &lt;p&gt;This is CDOSYS.dll not CDONTS two different things!&lt;/p&gt;
 </description>
     <pubDate>Wed, 28 Feb 2001 22:52:29 +0000</pubDate>
 <dc:creator>1aspfan</dc:creator>
 <guid isPermaLink="false">comment 1078753 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Documentation</title>
    <link>https://www.webmaster-forums.net/serverside-scripting/cdonts-specifying-smtp-server#comment-1078751</link>
    <description> &lt;p&gt;You can find documentation in:&lt;/p&gt;
&lt;p&gt;Wrox&lt;br /&gt;
ASP 3.0&lt;br /&gt;
Programmer&#039;s Reference&lt;/p&gt;
&lt;p&gt;There is a lot of useful stuff in there on CDO. There is also a lot of good stuff in the MSDN library as well.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
 </description>
     <pubDate>Wed, 28 Feb 2001 22:51:14 +0000</pubDate>
 <dc:creator>1aspfan</dc:creator>
 <guid isPermaLink="false">comment 1078751 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/cdonts-specifying-smtp-server#comment-1078749</link>
    <description> &lt;p&gt;where did you find the documentation for that?&lt;/p&gt;
 </description>
     <pubDate>Wed, 28 Feb 2001 22:43:11 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1078749 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Solution</title>
    <link>https://www.webmaster-forums.net/serverside-scripting/cdonts-specifying-smtp-server#comment-1078733</link>
    <description> &lt;p&gt;For those of you who need to know how to do this, this is what I came up with thanks for your help! &lt;/p&gt;
&lt;p&gt;using CDO for Win 2000 you can specify the smtp server.&lt;/p&gt;
&lt;p&gt;IF NOT Request.Form(x) = &quot;&quot; THEN&lt;br /&gt;
      sBody = sBody &amp;amp; vbCrLf &amp;amp; Request.Form.Key(x) &amp;amp; &quot; = &quot; &amp;amp; Trim(Request.Form(x))&lt;br /&gt;
   END IF&lt;br /&gt;
NEXT&lt;/p&gt;
&lt;p&gt;&#039; setup the from&lt;br /&gt;
IF Request.Form(&quot;email&quot;) = &quot;&quot; THEN&lt;br /&gt;
       sFrom = &quot;Anonymous&quot;&lt;br /&gt;
ELSE&lt;br /&gt;
      sFrom = you&lt;br /&gt;
END IF&lt;/p&gt;
&lt;p&gt;&#039; mail section - setup of cdo for 2000&lt;br /&gt;
DIM iMsg, Flds, iConf&lt;/p&gt;
&lt;p&gt;Set iMsg = CreateObject(&quot;CDO.Message&quot;)&lt;br /&gt;
Set iConf = CreateObject(&quot;CDO.Configuration&quot;)&lt;br /&gt;
Set Flds = iConf.Fields&lt;/p&gt;
&lt;p&gt;Flds(cdoSendUsingMethod) = cdoSendUsingPort&lt;br /&gt;
Flds(cdoSMTPServer) = &quot;&quot; &#039;replace this with your SMTP IP&lt;br /&gt;
Flds(cdoSMTPServerPort) = 25&lt;br /&gt;
Flds(cdoSMTPAuthenticate) = cdoAnonymous &#039; 0&lt;br /&gt;
Flds.Update&lt;/p&gt;
&lt;p&gt;With iMsg&lt;br /&gt;
   Set .Configuration = iConf&lt;br /&gt;
   .To = &quot;recipient e-mail&quot;&lt;br /&gt;
   .From = &quot;your email&quot;&lt;br /&gt;
   .Sender = &quot;your email&quot;&lt;br /&gt;
   .Subject = &quot;Form Output&quot;&lt;br /&gt;
   .TextBody = &quot;&quot; &amp;amp; sBody &amp;amp; &quot;&quot;&lt;br /&gt;
   .Send&lt;br /&gt;
End With&lt;br /&gt;
%&amp;gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 28 Feb 2001 14:30:59 +0000</pubDate>
 <dc:creator>1aspfan</dc:creator>
 <guid isPermaLink="false">comment 1078733 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/cdonts-specifying-smtp-server#comment-1078731</link>
    <description> &lt;p&gt;1aspfan,&lt;/p&gt;
&lt;p&gt;If you&#039;re using IIS5 you can use CDO for Windows 2000 which is a lot like CDONTS just better and faster and it let&#039;s you specify the mail server you want to use.&lt;/p&gt;
 </description>
     <pubDate>Wed, 28 Feb 2001 13:09:14 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1078731 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/cdonts-specifying-smtp-server#comment-1078727</link>
    <description> &lt;p&gt;I searched MSDN, and I don&#039;t believe this is possible.  Sorry &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Interesting link: &lt;a href=&quot;http://msdn.microsoft.com/library/psdk/cdo/_denali_newmail_object_cdonts_library_.htm&quot; class=&quot;bb-url&quot;&gt;http://msdn.microsoft.com/library/psdk/cdo/_denali_newmail_object_cdonts_library_.htm&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 28 Feb 2001 07:49:43 +0000</pubDate>
 <dc:creator>Mark Hensler</dc:creator>
 <guid isPermaLink="false">comment 1078727 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
