<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1003318" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1003318</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/getting-cdo-object-work-asp#comment-1014596</link>
    <description> &lt;p&gt;Apparently my web hosting provider does not allow customers to you CDO. They block all email sent with it. But they do allow to use ASPMailer, instead. &lt;/p&gt;
&lt;p&gt;Thanks anyway.&lt;br /&gt;
Eugene&lt;/p&gt;
 </description>
     <pubDate>Mon, 17 Jan 2000 05:07:00 +0000</pubDate>
 <dc:creator>Eugene Grinberg</dc:creator>
 <guid isPermaLink="false">comment 1014596 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/getting-cdo-object-work-asp#comment-1014595</link>
    <description> &lt;p&gt;I don&#039;t think the problem was with my script since it worked off of my localhost. I already contacted my hosting provider, and thus within the next couple of YEARS this should be fixed.&lt;/p&gt;
&lt;p&gt;Thanks RC for your help.&lt;br /&gt;
Eugene&lt;/p&gt;
 </description>
     <pubDate>Sat, 15 Jan 2000 16:32:00 +0000</pubDate>
 <dc:creator>Eugene Grinberg</dc:creator>
 <guid isPermaLink="false">comment 1014595 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/getting-cdo-object-work-asp#comment-1014594</link>
    <description> &lt;p&gt;I am cutting and pasting some code directly from an .asp page that I use to send mail. &lt;/p&gt;
&lt;p&gt;&amp;lt;%    Dim objCDO&lt;br /&gt;
      Set objCDO = Server.CreateObject(&quot;CDONTS.NewMail&quot;)&lt;/p&gt;
&lt;p&gt;      objCDO.To = &quot;RC@Webmaster-forums.com&quot;&lt;br /&gt;
      objCDO.From = &quot;RC@Webmaster-forums.com&quot;&lt;/p&gt;
&lt;p&gt;      Dim txtSubject&lt;br /&gt;
      txtSubject = &quot;TEST! TEST!&quot; &amp;amp; VbCrLf &amp;amp; _&lt;br /&gt;
                    Now()&lt;/p&gt;
&lt;p&gt;      objCDO.Subject = &quot;TEST!&quot;&lt;br /&gt;
      objCDO.Body = txtSubject&lt;br /&gt;
      objCDO.Send&lt;/p&gt;
&lt;p&gt;      Set objCDO = Nothing&lt;br /&gt;
%&amp;gt; &lt;/p&gt;
&lt;p&gt;The only difference is the Server.CreateObject that I have versus your createobject. Cut and paste mine and replace your information and test it again. &lt;/p&gt;
&lt;p&gt;Another possibility that I am sure you have considered, but I have to ask anyways....Are you in charge of your remote server..or is it hosted for you? &lt;/p&gt;
&lt;p&gt;If it is hosted by someone else..have you verified that they are running IIS or another program that process .asp files? Who knows, maybe they are paranoid and disabled .asp processing. Anyways, just a thought.&lt;/p&gt;
 </description>
     <pubDate>Sat, 15 Jan 2000 00:00:00 +0000</pubDate>
 <dc:creator>RC</dc:creator>
 <guid isPermaLink="false">comment 1014594 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/getting-cdo-object-work-asp#comment-1014593</link>
    <description> &lt;p&gt;The thing is that I don&#039;t get any errors, not on my localhost at home, not on my web server which is remotely hosted. When I use this script on my localhost it sends email, and when I use it on my web server, it does NOT send email (even though I don&#039;t get any error messages).&lt;/p&gt;
&lt;p&gt;I am sure the CDO is installed on the web server, because I would get an error message if it was not.&lt;/p&gt;
&lt;p&gt;If you want I can show you the code that I am using:&lt;/p&gt;
&lt;p&gt;set objMail = createobject(&quot;CDONTS.Newmail&quot;)&lt;br /&gt;
objMail.From = &quot;test@Test.com&quot;&lt;br /&gt;
objMail.To = &quot;test@test.com&quot;&lt;br /&gt;
objMail.Subject = &quot;subject&quot;&lt;br /&gt;
objMail.Body = &quot;body&quot;&lt;br /&gt;
objMail.Send&lt;/p&gt;
&lt;p&gt;set objMail = nothing			&lt;/p&gt;
&lt;p&gt;Any thoughts?&lt;/p&gt;
 </description>
     <pubDate>Fri, 14 Jan 2000 22:13:00 +0000</pubDate>
 <dc:creator>Eugene Grinberg</dc:creator>
 <guid isPermaLink="false">comment 1014593 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/getting-cdo-object-work-asp#comment-1014592</link>
    <description> &lt;p&gt;I use ASP to send email with the CDO object all the time. Hopefully I can help you out  &lt;img src=&quot;http://www.webmaster-forums.com/ubb/wink.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The first thing I will suggest to is make sure that the Collaborative Data Object is installed on the server. It shipped out with NT Option Pack 4. In order to ensure that is installed goto Start/ Control Panel/ Add/Remove Programs/ NT Option Pack 4 and check to make sure that the SMTP Piece has been installed. It does not automatically install so if you have not chosen this option, it will not be there. Install it and then try your code again. &lt;/p&gt;
&lt;p&gt;If you have already done this, then perhaps show me the errors you are getting or your code.&lt;/p&gt;
&lt;p&gt;good luck&lt;/p&gt;
 </description>
     <pubDate>Fri, 14 Jan 2000 21:05:00 +0000</pubDate>
 <dc:creator>RC</dc:creator>
 <guid isPermaLink="false">comment 1014592 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
