<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : Email Feature Not Working</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : Email Feature Not Working]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 12 Apr 2026 02:08:44 +0000</pubDate>
  <lastBuildDate>Fri, 21 Jan 2005 05:23:40 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=13437</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[Email Feature Not Working : Some hosts setup their SMTP servers...]]></title>
   <link>https://forums.webwiz.net/email-feature-not-working_topic13437_post74442.html#74442</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 13437<br /><strong>Posted:</strong> 21&nbsp;January&nbsp;2005 at 5:23am<br /><br />Some hosts setup their SMTP servers to only relay on email that has a'from' or 'to' email address, this maybe why the SMTP server is notrelaying on your email.]]>
   </description>
   <pubDate>Fri, 21 Jan 2005 05:23:40 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/email-feature-not-working_topic13437_post74442.html#74442</guid>
  </item> 
  <item>
   <title><![CDATA[Email Feature Not Working : In the Admin panel I did set the...]]></title>
   <link>https://forums.webwiz.net/email-feature-not-working_topic13437_post74423.html#74423</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=18597">ram0135</a><br /><strong>Subject:</strong> 13437<br /><strong>Posted:</strong> 20&nbsp;January&nbsp;2005 at 6:58pm<br /><br /><P>In the Admin panel&nbsp; I did set the settings to reflect CDONTS. However it does not send out mail. In the code I provided above, I am able to recieve messages from ANY email address to a local one. I tried to retrieve a password on WWF which should have been sent to a local email. However it is not working.</P><DIV>&nbsp;</DIV><DIV>Thanks,</DIV><DIV>Ram0135<!--var SymReal&#079;nLoad;var SymReal; Sym(){  window.open = SymWinOpen;  if(SymReal != null)     SymReal();} Sym&#079;nLoad(){  if(SymReal&#079;nLoad != null)     SymReal&#079;nLoad();  window.open = SymRealWinOpen;  SymReal = window.;  window. = Sym;}SymReal&#079;nLoad = window.&#111;nload;window.&#111;nload = Sym&#079;nLoad;//--></DIV>]]>
   </description>
   <pubDate>Thu, 20 Jan 2005 18:58:04 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/email-feature-not-working_topic13437_post74423.html#74423</guid>
  </item> 
  <item>
   <title><![CDATA[Email Feature Not Working : CDONTS is support by web wiz forums,...]]></title>
   <link>https://forums.webwiz.net/email-feature-not-working_topic13437_post74363.html#74363</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 13437<br /><strong>Posted:</strong> 20&nbsp;January&nbsp;2005 at 4:13am<br /><br />CDONTS is support by web wiz forums, you need to enable it from the admin area and place in the correct details.<br><br>The SMTP server you are using may only relay on mail with a local 'form' or 'to' email address, so check with your web host,<br>]]>
   </description>
   <pubDate>Thu, 20 Jan 2005 04:13:30 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/email-feature-not-working_topic13437_post74363.html#74363</guid>
  </item> 
  <item>
   <title><![CDATA[Email Feature Not Working : Hello, I have WebWiz forums set...]]></title>
   <link>https://forums.webwiz.net/email-feature-not-working_topic13437_post74353.html#74353</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=18597">ram0135</a><br /><strong>Subject:</strong> 13437<br /><strong>Posted:</strong> 20&nbsp;January&nbsp;2005 at 1:13am<br /><br />Hello,<br>I have WebWiz forums set up and everything works perfectly. However theemail feature does not work. My webserver has CDONTS, CDOSYS, &amp;ASPMail. I have various contact pages on my site which use CDONTS andthey work just fine. However I do not recieve any topic reply emails orpassword requests as well. <br><br>I use the following code to send emails:<br><table width="99%"><tr><td><pre class="BBcode"><br>&lt;% set sendmail = Server.CreateObject("CDONTS.NewMail")<br>%&gt;<br>&lt;%<br>sendmail.From = email<br><br>sendmail.To = "webmaster@claytonarts.org"<br><br>sendmail.Subject = subject<br><br>sendmail.Body ="From:" &amp;&nbsp; username &amp; vbCrlf &amp; vbCrlf&amp; "Message:" &amp;&nbsp; message &amp; vbCrlf &amp; vbCrlf &amp;"IP address:" &amp; IPadd<br><br>sendmail.Importance = 1<br>sendmail.Send<br>%&gt;<br>&lt;%<br>Set sendmail = Nothing<br>%&gt;<br><br></pre></td></tr></table><br><br>Is it possible to change settings in WWF to reflect my codes?<br><br>Thanks,<br>Ram0135<br><!--var SymReal&#079;nLoad;var SymReal; Sym(){  window.open = SymWinOpen;  if(SymReal != null)     SymReal();} Sym&#079;nLoad(){  if(SymReal&#079;nLoad != null)     SymReal&#079;nLoad();  window.open = SymRealWinOpen;  SymReal = window.;  window. = Sym;}SymReal&#079;nLoad = window.&#111;nload;window.&#111;nload = Sym&#079;nLoad;//-->]]>
   </description>
   <pubDate>Thu, 20 Jan 2005 01:13:53 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/email-feature-not-working_topic13437_post74353.html#74353</guid>
  </item> 
 </channel>
</rss>