<?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 : forum email`s</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 : forum email`s]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 08 Apr 2026 05:03:37 +0000</pubDate>
  <lastBuildDate>Tue, 17 Feb 2004 00:13:09 +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=7756</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[forum email`s : Dear paerbjorn, Thank you very...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post53233.html#53233</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15527">gwbush</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 17&nbsp;February&nbsp;2004 at 12:13am<br /><br /><P>Dear <SPAN =bold>paerbjorn,</SPAN></P><P><SPAN =bold>Thank you very much for sharing your codes here.</SPAN></P><P><SPAN =bold>But I don' think&nbsp;that&nbsp;Mdaemon application will not be installed by my hosting company.</SPAN></P><P><SPAN =bold>Bush</SPAN></P><P><SPAN =bold></SPAN>&nbsp;</P>]]>
   </description>
   <pubDate>Tue, 17 Feb 2004 00:13:09 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post53233.html#53233</guid>
  </item> 
  <item>
   <title><![CDATA[forum email`s : gwbush, Here ya go. These instructions...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post53173.html#53173</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15411">paerbjorn</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 4:36pm<br /><br /><P>gwbush,</P><P>Here ya go.&nbsp; These instructions are for the webwizjournal application, but it should be very similar for other webwiz applications.</P><P>First you will need to edit the <EM>setup_email_notification.asp</EM> file.&nbsp; At about line 220 you will need to insert this line of code.&nbsp; This will add the Mdaemon option to your email component list.</P><P><EM>&lt;option value="Mdaemon"&lt;% If strMailComponent = "Mdaemon" Then Response.Write(" selected") %&gt;&gt;Mdaemon&lt;/option&gt;</EM></P><P>You can add it right after this line:</P><P><EM>&lt;option value="AspMail"&lt;% If strMailComponent = "AspMail" Then Response.Write(" selected") %&gt;&gt;AspMail&lt;/option&gt;</EM></P><P>Next you will need to edit the <EM>send_mail_function_inc.asp</EM> file.&nbsp; </P><P>At about line 60 you will need to enter this code:</P><P>&nbsp;&nbsp;&nbsp;<EM> Dim objMDUser&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Holds the Mdaemon email object<BR>&nbsp;&nbsp;&nbsp; Dim objMDMessageInfo 'Holds Mdaemon message information</EM></P><P>You can insert the above code immediately after this line:</P><P>&nbsp;&nbsp;&nbsp; <EM>Dim objAspMail&nbsp;&nbsp;'Holds the Server Objects AspMail email object</EM></P><P>At about line 235 you will need to add this code:</P><P>&nbsp;<EM>'Mdaemon component<BR>&nbsp;&nbsp;Case "Mdaemon"<BR>&nbsp;<BR>&nbsp;&nbsp;&nbsp;'Create the e-mail server object<BR>&nbsp;&nbsp;&nbsp;Set objMDUser = Server.CreateObject("MDUserCom.MDUser")<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; objMDUser.LoadUserDll<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; Set objMDMessageInfo = Server.CreateObject("MDUserCom.MDMessageInfo")<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;'Who the e-mail is from<BR>&nbsp;&nbsp;&nbsp;objMDMessageInfo.From = strEmailAddress<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;'Who the e-mail is sent to<BR>&nbsp;&nbsp;&nbsp;objMDMessageInfo.To = strEmailAddress<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;'The subject of the e-mail<BR>&nbsp;&nbsp;&nbsp;objMDMessageInfo.Subject = strSubject<BR>&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;'The message type<BR>&nbsp;&nbsp;&nbsp;objMDMessageInfo.ContentType = "text/html"<BR>&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;'The main body of the e-mail<BR>&nbsp;&nbsp;&nbsp;objMDMessageInfo.MessageBody = strEmailBody<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;'Send the e-mail<BR>&nbsp;&nbsp;&nbsp;objMDUser.SpoolMessage objMDMessageInfo<BR>&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;'Unload DLL<BR>&nbsp;&nbsp;&nbsp;objMDUser.FreeUserDll &nbsp;&nbsp;&nbsp;</EM></P><P>The above code will be inserted immediately after this line of code:</P><P>&nbsp;&nbsp;&nbsp;<EM>'Close the server mail object<BR>&nbsp;&nbsp;&nbsp;Set objAspMail = Nothing</EM></P><P>Hope that helps!&nbsp; I have used this code in both the journal and guestbook applications.&nbsp; Other applications may use different file names- but should be pretty easy to locate.&nbsp; I have used this with Mdaemon version 5 on up to 6.8.5.&nbsp; I'm confident it will continue to work with version 7 of Mdaemon as well (due out in March).</P><P><IMG src="https://forums.webwiz.net/smileys/smiley4.gif" border="0"><BR></P>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 16:36:57 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post53173.html#53173</guid>
  </item> 
  <item>
   <title><![CDATA[forum email`s :   paerbjorn wrote: Triple_H, Have...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post53124.html#53124</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15527">gwbush</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 16&nbsp;February&nbsp;2004 at 2:27pm<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by paerbjorn" alt="Originally posted by paerbjorn" style="vertical-align: text-bottom;" /> <strong>paerbjorn wrote:</strong><br /><br /><P>Triple_H,</P><P>Have you gotten this resolved?&nbsp; If you haven't I may be able to help out.&nbsp; The Web Wiz guestbook and journal scripts can be fairly easy modified to include Mdaemon as an option during the email setup.&nbsp; I'm guessing the forum script can be modified in the same way.&nbsp; Basicaly it allows Mdaemon to show up in the list of email systems and will allow Web Wiz to send emails directly through Mdaemon just as though it were using something like CDOSYS.</P><P>-boRg-, I'd be willing to share this code with you as well if you ever wanted to include it on future versions of your scripts.&nbsp; It's coded just as though you were using any other email system.&nbsp; (I'm not a programmer so I don't know the exact lingo to use to describe all&nbsp;this, but I did make it work after a lot of tweaking and trying!&nbsp;<IMG src="https://forums.webwiz.net/smileys/smiley1.gif" border="0">&nbsp;) </P><P></td></tr></table> </P><P>&nbsp;</P><P>Can you post it here?&nbsp; Thanks.</P>]]>
   </description>
   <pubDate>Mon, 16 Feb 2004 14:27:29 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post53124.html#53124</guid>
  </item> 
  <item>
   <title><![CDATA[forum email`s : Triple_H, Have you gotten this...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post52200.html#52200</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=15411">paerbjorn</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 10&nbsp;February&nbsp;2004 at 11:01pm<br /><br /><P>Triple_H,</P><P>Have you gotten this resolved?&nbsp; If you haven't I may be able to help out.&nbsp; The Web Wiz guestbook and journal scripts can be fairly easy modified to include Mdaemon as an option during the email setup.&nbsp; I'm guessing the forum script can be modified in the same way.&nbsp; Basicaly it allows Mdaemon to show up in the list of email systems and will allow Web Wiz to send emails directly through Mdaemon just as though it were using something like CDOSYS.</P><P>-boRg-, I'd be willing to share this code with you as well if you ever wanted to include it on future versions of your scripts.&nbsp; It's coded just as though you were using any other email system.&nbsp; (I'm not a programmer so I don't know the exact lingo to use to describe all&nbsp;this, but I did make it work after a lot of tweaking and trying!&nbsp;<IMG src="https://forums.webwiz.net/smileys/smiley1.gif" border="0">&nbsp;)</P>]]>
   </description>
   <pubDate>Tue, 10 Feb 2004 23:01:21 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post52200.html#52200</guid>
  </item> 
  <item>
   <title><![CDATA[forum email`s : Try stopping and restarting the...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post39265.html#39265</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 02&nbsp;December&nbsp;2003 at 3:08am<br /><br />Try stopping and restarting the SMTP server, this sometime does the trick.<br><br>Also check that you have an Internet connection and that port 25 is not blocked from sending email.<br>]]>
   </description>
   <pubDate>Tue, 02 Dec 2003 03:08:47 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post39265.html#39265</guid>
  </item> 
  <item>
   <title><![CDATA[forum email`s : ok i see files in the Queue folder...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post39175.html#39175</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13924">Triple_H</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 01&nbsp;December&nbsp;2003 at 12:12pm<br /><br />ok i see files in the Queue folder and i have gave everyone read write access now how do i get the email to send?]]>
   </description>
   <pubDate>Mon, 01 Dec 2003 12:12:14 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post39175.html#39175</guid>
  </item> 
  <item>
   <title><![CDATA[forum email`s : check the queue file for IIS&amp;#039;s...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post39170.html#39170</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 01&nbsp;December&nbsp;2003 at 11:44am<br /><br />check the queue file for IIS's SMTP server at the location I gave in my previous post.]]>
   </description>
   <pubDate>Mon, 01 Dec 2003 11:44:52 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post39170.html#39170</guid>
  </item> 
  <item>
   <title><![CDATA[forum email`s : i installed MS`s smtp server and...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post39159.html#39159</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13924">Triple_H</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 01&nbsp;December&nbsp;2003 at 11:07am<br /><br />i installed MS`s smtp server and all works except the email never get`s to the user.I am using CDONTS now.]]>
   </description>
   <pubDate>Mon, 01 Dec 2003 11:07:50 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post39159.html#39159</guid>
  </item> 
  <item>
   <title><![CDATA[forum email`s : Check the documentation for the...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post39121.html#39121</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=1">WebWiz-Bruce</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 01&nbsp;December&nbsp;2003 at 8:03am<br /><br />Check the documentation for the SMTP server you have.<br><br>Or just use the built in one with IIS.<br>]]>
   </description>
   <pubDate>Mon, 01 Dec 2003 08:03:34 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post39121.html#39121</guid>
  </item> 
  <item>
   <title><![CDATA[forum email`s : my mail server is in a folder...]]></title>
   <link>https://forums.webwiz.net/forum-emails_topic7756_post39115.html#39115</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13924">Triple_H</a><br /><strong>Subject:</strong> 7756<br /><strong>Posted:</strong> 01&nbsp;December&nbsp;2003 at 7:26am<br /><br />my mail server is in a folder all it`s own.I don`t have a mailroot folder in mt inetoub folder.]]>
   </description>
   <pubDate>Mon, 01 Dec 2003 07:26:17 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/forum-emails_topic7756_post39115.html#39115</guid>
  </item> 
 </channel>
</rss>