<?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="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>SalesCart Forums : Email registry</title>
  <link>http://forum.salescart.com/forum/</link>
  <description><![CDATA[This is an XML content feed of; SalesCart Forums : SalesCart Standard / PRO / SQL : Email registry]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sun, 21 Jun 2026 05:06:50 +0000</pubDate>
  <lastBuildDate>Wed, 07 Apr 2004 07:25:35 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 11.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.salescart.com/forum/RSS_post_feed.asp?TID=49</WebWizForums:feedURL>
  <image>
   <title><![CDATA[SalesCart Forums]]></title>
   <url>http://forum.salescart.com/forum/forum_images/web_wiz_forums.png</url>
   <link>http://forum.salescart.com/forum/</link>
  </image>
  <item>
   <title><![CDATA[Email registry : Also if you don&amp;#039;t feel comfortable...]]></title>
   <link>http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=164&amp;title=email-registry#164</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.salescart.com/forum/member_profile.asp?PF=51">GreatWeb1</a><br /><strong>Subject:</strong> 49<br /><strong>Posted:</strong> April/07/04 at 7:25am<br /><br />Also if you don't feel comfortable editing the SalesCart software, you can point the form to a page containing these codes. Just replace the variable with your info.<br /><br />**This is for Windows 2003 Server**<br /><br /><br />&lt;%@ LANGUAGE="VBScript.Encode" %&gt;<br />&lt;%<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mymail = "YOUREMAILADDRESS@domain.COM"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sitename = "YOUR SITE NAME"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mysubject = sitename & "(" & Request.Form("Subject") & ")"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Dim objMail, themessage<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Set objMail = Server.CreateObject("CDO.Message")<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & chr(13)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & "Name: " & Request.Form("name") & chr(13)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & "Phone: " & Request.Form("phone") & chr(13)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & "Email Address: " & Request.Form("FromEmail") & chr(13)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & " " & chr(13)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & Request.Form("Message") & chr(13)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & " " & chr(13)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & " " & chr(13)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & "Sent On: " & date & chr(13)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;themessage = themessage & " " & chr(13)<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;objMail.From = Request.Form("FromEmail")<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;objMail.To = Request.Form("Email")<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;objMail.Subject = mysubject<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;objMail.TextBody = themessage<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;objMail.Send<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Response.Redirect "your_thank_you_page.html"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set objMail = nothing<br />%&gt;]]>
   </description>
   <pubDate>Wed, 07 Apr 2004 07:25:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=164&amp;title=email-registry#164</guid>
  </item> 
  <item>
   <title><![CDATA[Email registry : If you want the form to retain...]]></title>
   <link>http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=161&amp;title=email-registry#161</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.salescart.com/forum/member_profile.asp?PF=51">GreatWeb1</a><br /><strong>Subject:</strong> 49<br /><strong>Posted:</strong> April/07/04 at 7:20am<br /><br />If you want the form to retain the Name and Phone submitted then use these text box instead.<br /><br />&lt;input type="text" name="name" size="20" value="&lt;%=Request("name")%&gt;"&gt;<br />&lt;input type="text" name="phone" size="20" value="&lt;%=Request("phone")%&gt;"&gt;<br /><br /><br />]]>
   </description>
   <pubDate>Wed, 07 Apr 2004 07:20:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=161&amp;title=email-registry#161</guid>
  </item> 
  <item>
   <title><![CDATA[Email registry : In your EmailRegistry.asp page.   First...]]></title>
   <link>http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=160&amp;title=email-registry#160</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.salescart.com/forum/member_profile.asp?PF=51">GreatWeb1</a><br /><strong>Subject:</strong> 49<br /><strong>Posted:</strong> April/07/04 at 7:17am<br /><br />In your EmailRegistry.asp page.<br /><br /><br />First you will add these two text box:<br />&lt;input type="text" name="name" size="20" value=""&gt;<br />&lt;input type="text" name="phone" size="20" value=""&gt;<br /><br />Then replace this code:<br />objMail.SetBody=NewMessage<br /><br />With this:<br />objMail.SetBody="Name: " & Request.Form("name") & chr(13) & "Phone: " &  Request.Form("phone") & chr(13) & NewMessage]]>
   </description>
   <pubDate>Wed, 07 Apr 2004 07:17:27 +0000</pubDate>
   <guid isPermaLink="true">http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=160&amp;title=email-registry#160</guid>
  </item> 
  <item>
   <title><![CDATA[Email registry : I am using frontpage 2000.  What...]]></title>
   <link>http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=159&amp;title=email-registry#159</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.salescart.com/forum/member_profile.asp?PF=59">Andy Holmes</a><br /><strong>Subject:</strong> 49<br /><strong>Posted:</strong> April/07/04 at 6:24am<br /><br />I am using frontpage 2000.<br /><br />What I am really after is an alternative to credit card payments.<br /><br />I thought I could use the registry page so that users can send me the cart contents in an email- I would like to add a name and contact number so I can tie in the order with a user.<br /><br />Do you think this is possible GreatWeb1? I am a bit stumped so any tips would be welcome :-)<br /><br />Thanks in Advance<br />Andy]]>
   </description>
   <pubDate>Wed, 07 Apr 2004 06:24:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=159&amp;title=email-registry#159</guid>
  </item> 
  <item>
   <title><![CDATA[Email registry : What type of Web tool are you...]]></title>
   <link>http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=155&amp;title=email-registry#155</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.salescart.com/forum/member_profile.asp?PF=51">GreatWeb1</a><br /><strong>Subject:</strong> 49<br /><strong>Posted:</strong> April/06/04 at 3:23pm<br /><br />What type of Web tool are you using? Frontpage or DreamWeaver?<br /><br />Are you asking help on just adding two fields or a way to send out a secondary email with the information people are emailing?]]>
   </description>
   <pubDate>Tue, 06 Apr 2004 15:23:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=155&amp;title=email-registry#155</guid>
  </item> 
  <item>
   <title><![CDATA[Email registry : Anyone worked out how to add additional...]]></title>
   <link>http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=154&amp;title=email-registry#154</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.salescart.com/forum/member_profile.asp?PF=59">Andy Holmes</a><br /><strong>Subject:</strong> 49<br /><strong>Posted:</strong> April/06/04 at 5:07am<br /><br />Anyone worked out how to add additional inputs for the email registry page?<br /><br />I want to use this as a non payment way of getting user details sent to me.<br /><br />I want to add two extra inputs- "name" and "contact telephone" that will do. I can modify the page to send to an email address of my choice.<br /><br />I have been fiddling around with the code- can anyone give me a pointer on how to add these two text entry boxes?<br /><br />]]>
   </description>
   <pubDate>Tue, 06 Apr 2004 05:07:44 +0000</pubDate>
   <guid isPermaLink="true">http://forum.salescart.com/forum/forum_posts.asp?TID=49&amp;PID=154&amp;title=email-registry#154</guid>
  </item> 
 </channel>
</rss>