<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>Extras... contact form</title>
        <link>https://interactivetools.com/forum/forum-posts.php?Extras___-contact-form-68564</link>
        <description></description>
        <pubDate>Fri, 10 Apr 2026 10:13:44 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;Extras___-contact-form-68564" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [efi-revivo] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212396#post2212396</link>
          <description><![CDATA[Hi,<br /><br />We don't have our own captcha script but we could setup a third party captcha script for you through our paid consulting service.<br /><br />Send in your requirements to consulting here:<br />http://www.interactivetools.com/hire-us/#freeEstimate<br /><br />Thanks!<br />]]></description>
          <pubDate>Wed, 27 Jul 2011 09:07:21 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212396#post2212396</guid>
        </item>
                <item>
          <title>Re: [Jason] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212395#post2212395</link>
          <description><![CDATA[ok, maybe you have other captcha script that you can help me with?<br />]]></description>
          <pubDate>Wed, 27 Jul 2011 03:45:24 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212395#post2212395</guid>
        </item>
                <item>
          <title>Re: [efi-revivo] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212393#post2212393</link>
          <description><![CDATA[Hi,<br /><br />I took a quick look at the site.  We haven't used this specific captcha script before, so we're not familiar with exactly how to implement it.  <br /><br />They do have a quick start guide that should help get you started:<br /><a target="_blank" href="http://www.phpcaptcha.org/documentation/quickstart-guide/">http://www.phpcaptcha.org/documentation/quickstart-guide/</a><br /><br />If you run into any problems, they have a contact form for sending in questions here:<br /><a target="_blank" href="http://www.phpcaptcha.org/contact/">http://www.phpcaptcha.org/contact/</a><br /><br />That should help get you started.  Another thing we could do is to integrate this captcha script for you through our consulting service.  If you're interested in this, please send an email to <a href="mailto:consulting@interactivetools.com">consulting@interactivetools.com</a> and we can go over some options.<br /><br />Hope this helps<br />]]></description>
          <pubDate>Tue, 26 Jul 2011 18:44:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212393#post2212393</guid>
        </item>
                <item>
          <title>Re: [Damon] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212392#post2212392</link>
          <description><![CDATA[ok.. so what i need to do?<br />]]></description>
          <pubDate>Tue, 26 Jul 2011 13:53:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212392#post2212392</guid>
        </item>
                <item>
          <title>Re: [efi-revivo] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212390#post2212390</link>
          <description><![CDATA[Hi,<br /><br />I haven't ever you used a CAPTCHA from that site. <br /><br />Hopefully they have an example form with CAPTCHA added that you can use for reference?<br /><br />Anyone else used used CAPTCHA from phpcaptcha.org and can provide pointers?<br />]]></description>
          <pubDate>Tue, 26 Jul 2011 12:36:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212390#post2212390</guid>
        </item>
                <item>
          <title>Re: [Dave] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212389#post2212389</link>
          <description><![CDATA[I try to add a CAPTCHA to this form but i dont know how..<br /><br />from this site: http://www.phpcaptcha.org/<br /><br />how can i use it and send the form.<br />]]></description>
          <pubDate>Tue, 26 Jul 2011 11:40:20 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212389#post2212389</guid>
        </item>
                <item>
          <title>Re: [Jason] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204922#post2204922</link>
          <description><![CDATA[thank you :-)<br />]]></description>
          <pubDate>Thu, 17 Jun 2010 02:28:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204922#post2204922</guid>
        </item>
                <item>
          <title>Re: [efi-revivo] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204900#post2204900</link>
          <description><![CDATA[Hi,<br /><br />Are you looking to be able to send an HTML email instead of plain text?<br /><br />If so, you'll need to make some changes where the file sends and email.  It's pretty close to the top of the file.<br /><br />Under this line:<br /><code> $from = $_REQUEST['email'];</code><br /><br />Add this code:<br /><code>$headers  = 'MIME-Version: 1.0' . &quot;\r\n&quot;;<br />$headers .= 'Content-type: text/html; charset=iso-8859-1' . &quot;\r\n&quot;;<br />$headers .=&quot;From: $from \r\n&quot;;</code><br /><br />Then change the line that sends the email to this:<br /><code>// send message<br />      $mailResult = @mail($to, $subject, $message, $headers);<br />      if (!$mailResult) { die(&quot;Mail Error: $php_errormsg&quot;); }</code><br /><br />Give this a try. If you run into any issues, please attach a copy of the .php file you're working with.<br /><br />Hope this helps.<br />]]></description>
          <pubDate>Wed, 16 Jun 2010 11:10:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204900#post2204900</guid>
        </item>
                <item>
          <title>Re: [Dave] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204894#post2204894</link>
          <description><![CDATA[how can i use this contact form with HTML not TEXT?<br />]]></description>
          <pubDate>Wed, 16 Jun 2010 06:24:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204894#post2204894</guid>
        </item>
                <item>
          <title>Re: [lisadye] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198846#post2198846</link>
          <description><![CDATA[Hi Lisa,<br /><br />I'e attached a sample email form (emailForm.php).  You can either modify this one (which takes some PHP and HTML knowledge) or we can custom build some for you if needed through consulting.<br /><br />Hope that helps!  Let me know if you need anything else.<br />]]></description>
          <pubDate>Wed, 19 Aug 2009 19:30:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198846#post2198846</guid>
        </item>
                <item>
          <title>Re: [Dave] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198844#post2198844</link>
          <description><![CDATA[Dave:<br /><br />Do you have forms available?  I need to add a 'contact us' form and a 'request a quote' form and I have no clue how to go about this...<br /><br />Lisa<br />]]></description>
          <pubDate>Wed, 19 Aug 2009 19:07:34 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198844#post2198844</guid>
        </item>
                <item>
          <title>Re: [n33x] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191970#post2191970</link>
          <description><![CDATA[We've been thinking a lot about both email forms and modules/extensions.  We're actually redesigning our own website and have a number of custom email forms ourselves that I'd like to do with one tool.<br /><br />That said, we're pretty booked with custom programming and consulting right now, so it will be a while before we have time in the schedule to do this.  You'll still see updates, but the new features will be driven by what's being requested in those areas.<br /><br />If you wanted to do it as a custom programming job I'd be happy to get you a quote on it.  We could make a form builder with CMS Builder that would power an unlimited number of forms.  Email me at dave@interactivetools.com and we can discuss that.<br /><br />As far as an insiders handbook / API for CMS Builder, that's a good idea as well.  The underlying code is still evolving  a lot from version to version though as we add new features.  I think it will stabilize more in time and we'll be able to do that more.  <br /><br />Hope that helps.  Let me know if you want any custom addons and we can build them for you.<br />]]></description>
          <pubDate>Fri, 13 Jun 2008 13:26:15 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191970#post2191970</guid>
        </item>
                <item>
          <title>Re: [Djulia] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191968#post2191968</link>
          <description><![CDATA[I think that with all of the versitility that cmsB gives us that the form should be a high priority. Since I have been searching for tools within these pages to do things I have a re-occurring theme coming up .....<br /><br />My suggestion is that IAT can provide us with the tools for building modules .... kinda like a module builder tool box that explains some of the more important or fundemental steps for building modules for this software. An &quot;insiders handbook&quot; if you will. I think that this community will be able to share and build these modules ourselves without having to pay any additional money for other software ... then integrating it.<br /><br />My host has just made a change and I am unable to use Formail anymore. So All of my older sites have broken forms now. I'll have to go back re-do all these forms some other way. Would have been a great opportunity for me to upgrade all of these sites to cmsB.<br />[cool]<br />]]></description>
          <pubDate>Fri, 13 Jun 2008 10:41:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191968#post2191968</guid>
        </item>
                <item>
          <title>Re: [Djulia] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190827#post2190827</link>
          <description><![CDATA[Thanks for posting the link!<br />]]></description>
          <pubDate>Wed, 19 Mar 2008 17:34:37 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190827#post2190827</guid>
        </item>
                <item>
          <title>Re: [Dave] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190820#post2190820</link>
          <description><![CDATA[Thank you Dave for your answer. [:)] <br /><br />Today, I found a solution which works well with your CMS.<br />That makes it possible to produce the form quickly. [;)] <br /><br />But, I hope that you will integrate a solution in the future. <br /><br />If somebody seeks a solution, it is here :<br /><a target="_blank" href="http://www.bebosoft.com/products/formstogo/">http://www.bebosoft.com/products/formstogo/</a> <br /><br />Djulia<br />]]></description>
          <pubDate>Wed, 19 Mar 2008 17:07:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190820#post2190820</guid>
        </item>
                <item>
          <title>Re: [Djulia] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190815#post2190815</link>
          <description><![CDATA[So, you want an easy way to generate an email form?  Do you want the email store in the database, or just emailed?<br /><br />PHP has a mail() function that lets you send an email.  That would cover the basics:<br /><a target="_blank" href="http://www.php.net/manual/en/function.mail.php">http://www.php.net/manual/en/function.mail.php</a><br /><br />I think it might be a while before we add email functionality.  But if you want to let me know what you want to do specifically and I'll make the best suggestion I can on how to accomplish it.<br /><br />Hope that helps! :)<br />]]></description>
          <pubDate>Wed, 19 Mar 2008 16:52:07 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190815#post2190815</guid>
        </item>
                <item>
          <title>Re: [Dave] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190792#post2190792</link>
          <description><![CDATA[Hi Dave, <br /><br />&gt; I'll put it on the request list. <br />It would be a major option. [:)] <br /><br />In fact, I would like a form simple so that the visitor contacts the user <br />(the email entered in Admin &gt; User Accounts &gt; Email) : <br /><br />firstname, lastname, email, subject, message <br /><br />Perhaps you have a function to do this ? <br /><br />Would be perfect. [:)] <br /><br />Djulia<br />]]></description>
          <pubDate>Tue, 18 Mar 2008 13:01:50 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190792#post2190792</guid>
        </item>
                <item>
          <title>Re: [Djulia] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190785#post2190785</link>
          <description><![CDATA[I'll put it on the request list.  If you like I could just help you with the sql for it.  What fields do you want to insert?<br />]]></description>
          <pubDate>Tue, 18 Mar 2008 11:04:35 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190785#post2190785</guid>
        </item>
                <item>
          <title>Re: [Dave] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190781#post2190781</link>
          <description><![CDATA[Hi Dave, <br /><br />I always seek a solution for attach a form of contact to user. <br /><br />You can give a track of search ? <br /><br />Thank you for your assistance. <br /><br />Djulia<br />]]></description>
          <pubDate>Tue, 18 Mar 2008 03:27:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190781#post2190781</guid>
        </item>
                <item>
          <title>Re: [Thomas] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190036#post2190036</link>
          <description><![CDATA[Nowadays we avoid email addresses on web pages as they cause so many problens with spam, an option to select a contact from a list and then send that person the form content would be excellent.<br /><br />Best Wishes,<br />Mickey<br />]]></description>
          <pubDate>Sun, 03 Feb 2008 12:40:14 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190036#post2190036</guid>
        </item>
                <item>
          <title>Re: [Dave] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190011#post2190011</link>
          <description><![CDATA[That sounds great thank you!<br />]]></description>
          <pubDate>Thu, 31 Jan 2008 17:27:03 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190011#post2190011</guid>
        </item>
                <item>
          <title>Re: [Thomas] Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190009#post2190009</link>
          <description><![CDATA[We've had a few requests for forms that can add to the database (comments, contact, events, etc).  <br /><br />What I'm thinking we can do for a future version is have a function that can be called for adding data and a tutorial on how to do it.  That way you could add whatever data you wanted to any section.<br />]]></description>
          <pubDate>Thu, 31 Jan 2008 17:23:02 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190009#post2190009</guid>
        </item>
                <item>
          <title>Extras... contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2189997#post2189997</link>
          <description><![CDATA[Has anyone integrated a contact form into CMS builder? <br /><br />Do you think it might be possible to have a few common CMS builder 'modules' that can easily be installed into pages in the future such as contact forms, comments etc.<br /><br />:)<br />]]></description>
          <pubDate>Wed, 30 Jan 2008 22:13:34 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2189997#post2189997</guid>
        </item>
              </channel>
    </rss>
  