Results 1 to 8 of 8

Thread: Form not sending to email
      
   

  1. #1
    dew
    dew is offline Master Sergeant
    Join Date
    Apr 2008
    Posts
    63

    Default 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

  2. #2
    dew
    dew is offline Master Sergeant
    Join Date
    Apr 2008
    Posts
    63

    Default Re: Form not sending to email

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

  3. #3
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default 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!


  4. #4
    dew
    dew is offline Master Sergeant
    Join Date
    Apr 2008
    Posts
    63

    Default 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>

  5. #5
    dew
    dew is offline Master Sergeant
    Join Date
    Apr 2008
    Posts
    63

    Default Re: Form not sending to email

    Why would it be blocked?

  6. #6
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default 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!


  7. #7
    dew
    dew is offline Master Sergeant
    Join Date
    Apr 2008
    Posts
    63

    Default Re: Form not sending to email

    Where can I access the BV10-D forms?

    Thanks in advance.

    Denise

  8. #8
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: Form not sending to email

    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!


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49