Form not sending to email

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • dew
    Master Sergeant

    • Apr 2008
    • 63

    Form not sending to email

    I have built my form and it successfully links to my thank you page (thank you BV!)

    However, the email information from the form is not being sent to my email. What do I need to check/change?

    www.pkksystems.com

    thanks,
    Denise
  • dew
    Master Sergeant

    • Apr 2008
    • 63

    #2
    Re: Form not sending to email

    please help someone! I've tried everything I can think of, which is limited as complete beginner!

    Comment

    • navaldesign
      General & Forum Moderator

      • Oct 2005
      • 12080

      #3
      Re: Form not sending to email

      Use the brand new BV10 -D form wizard.

      However, your problem seems to be (i can't know if i don't see the script you are using) that the mail is either blocked by your ISP (usually yahoo, comcast, aol) or not sent at all (if your script is not correctly configured)
      Navaldesign
      Logger Lite: Low Cost, Customizable, multifeatured Login script
      Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
      DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
      Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!

      Comment

      • dew
        Master Sergeant

        • Apr 2008
        • 63

        #4
        Re: Form not sending to email

        Here is the script (I hope this is what you mean) from the thank you page.

        !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
        <html>
        <head>
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
        <title>Action</title>
        <meta name="GENERATOR" content="Created by BlueVoda">
        <script type="text/javascript">
        <!--
        function SwapImage()
        {
        var doc=document, args=arguments;
        doc.$imgSwaps = new Array();
        for(var i=2; i<args.length; i+=2)
        {
        var elem=FindObject(args[i]);
        if(elem)
        {
        doc.$imgSwaps[doc.$imgSwaps.length]=elem;
        elem.$src=elem.src;
        elem.src=args[i+1];
        }
        }
        }
        // -->
        </script>
        <script type="text/javascript">
        <!--
        function FindObject(id, doc)
        {
        var child, elem;
        if(!doc)
        doc=document;
        if(doc.getElementById)
        elem=doc.getElementById(id);
        else
        if(doc.layers)
        child=doc.layers;
        else
        if(doc.all)
        elem=doc.all[id];
        if(elem)
        return elem;
        if(doc.id==id || doc.name==id)
        return doc;
        if(doc.childNodes)
        child=doc.childNodes;
        if(child)
        {
        for(var i=0; i<child.length; i++)
        {
        elem=FindObject(id,child[i]);
        if(elem)
        return elem;
        }
        }
        var frm=doc.forms;
        if(frm)
        {
        for(var i=0; i<frm.length; i++)
        {
        var elems=frm[i].elements;
        for(var j=0; j<elems.length; j++)
        {
        elem=FindObject(id,elems[i]);
        if(elem) return elem;
        }
        }
        }
        return null;
        }
        // -->
        </script>
        </head>
        <body bgcolor="#FFFFE0" text="#000000">
        <?PHP
        $mailto = "youremail@yourdomain.com";
        $email = $HTTP_POST_VARS['email'];
        if ($email == "") {
        $email = "info@pkksystems.com";
        }
        $mailsubj = "Contact";
        $mailhead = "From: $email\n";
        reset ($HTTP_POST_VARS);
        $mailbody = "Values submitted from web site form :\n";
        while (list ($key, $val) = each ($HTTP_POST_VARS))
        {
        if ($key!="submit")
        {
        $mailbody .= "$key : $val\n";
        }
        }
        mail($mailto, $mailsubj, $mailbody, $mailhead);
        ?>
        <div id="bv_" style="position:absolute;left:11px;top:67px;width: 178px;height:238px;background-color:#AFEEEE;z-index:0" align="center">
        <font style="font-size:29px" color="#000000" face="Arial"><b>Thank you <br>
        for your email!<br>
        <br>
        We will contact you shortly.</b></font></div>
        <div id="bv_" style="position:absolute;left:23px;top:37px;width: 144px;height:27px;z-index:1" align="center">
        <table border="0" cellpadding="0" cellspacing="0" id="NavigationBar1">
        <tr>
        <td align="left" valign="top" width="144" height="27"><a href="http://ppksystems.com/contact" target="_self"><img id="bv01059" src="bv01059.gif" alt="Home" title="Home" align="top" border="0" width="144" height="27" onmouseover="SwapImage(1,0,'bv01059','bv01059_over .gif')" onmouseout="SwapImage(0,0,'bv01059','bv01059.gif') "></a></td>
        </tr>
        </table>
        </div>
        <div id="bv_" style="position:absolute;left:24px;top:319px;width :144px;height:27px;z-index:2" align="center">
        <table border="0" cellpadding="0" cellspacing="0" id="NavigationBar2">
        <tr>
        <td align="left" valign="top" width="144" height="27"><a href="http://ppksystems.com/contact" target="_blank"><img id="bv01061" src="bv01061.gif" alt="Home" title="Home" align="top" border="0" width="144" height="27" onmouseover="SwapImage(1,0,'bv01061','bv01061_over .gif')" onmouseout="SwapImage(0,0,'bv01061','bv01061.gif') "></a></td>
        </tr>
        </table>
        </div>
        </body>
        </html>

        Comment

        • dew
          Master Sergeant

          • Apr 2008
          • 63

          #5
          Re: Form not sending to email

          Why would it be blocked?

          Comment

          • navaldesign
            General & Forum Moderator

            • Oct 2005
            • 12080

            #6
            Re: Form not sending to email

            You have mistaken the script:

            <?PHP
            $mailto = "info@pkksystems.com";
            $email = $HTTP_POST_VARS['email'];
            if ($email == "") {
            $email = $mailto;
            }
            $mailsubj = "Contact";
            $mailhead = "From: $email\n";
            reset ($HTTP_POST_VARS);
            $mailbody = "Values submitted from web site form :\n";
            while (list ($key, $val) = each ($HTTP_POST_VARS))
            {
            if ($key!="submit")
            {
            $mailbody .= "$key : $val\n";
            }
            }
            mail($mailto, $mailsubj, $mailbody, $mailhead);
            ?>

            Why don't you simply use the new BV10-D forms ? it will upload the entire script for you without mistakes!!

            Your thank you page will become a simple html page if you use the "Embedded php formprocessor"

            Navaldesign
            Logger Lite: Low Cost, Customizable, multifeatured Login script
            Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
            DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
            Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!

            Comment

            • dew
              Master Sergeant

              • Apr 2008
              • 63

              #7
              Re: Form not sending to email

              Where can I access the BV10-D forms?

              Thanks in advance.

              Denise

              Comment

              • navaldesign
                General & Forum Moderator

                • Oct 2005
                • 12080

                #8
                Re: Form not sending to email

                Download the new BV 10D at http://www.vodasupport.com/index.php...wnloaditemid=1
                Navaldesign
                Logger Lite: Low Cost, Customizable, multifeatured Login script
                Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
                DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
                Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!

                Comment

                Working...
                X