Results 1 to 13 of 13

Thread: Email does not contain info submitted
      
   

  1. #1
    carlap is offline Private First Class
    Join Date
    Mar 2008
    Posts
    5

    Question Email does not contain info submitted

    I made a form and everything seems to be working. I receive an email saying "Values submitted from web site form", but that is it. No information!!! Help!

  2. #2
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Email does not contain info submitted

    Post a link to your form

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

  3. #3
    carlap is offline Private First Class
    Join Date
    Mar 2008
    Posts
    5

    Default Re: Email does not contain info submitted


  4. #4
    Watdaflip's Avatar
    Watdaflip is offline Major General
    Join Date
    Sep 2005
    Location
    Cincinnati, Ohio
    Posts
    2,119

    Default Re: Email does not contain info submitted

    Double check the page, the link you gave doesn't work

    Register/Login Script
    Do you use a Password Protected Directory? Need a way to allow users to make their own account, try my .htaccess Login Script

  5. #5
    carlap is offline Private First Class
    Join Date
    Mar 2008
    Posts
    5

    Default Re: Email does not contain info submitted


  6. #6
    Marincky's Avatar
    Marincky is offline General
    Join Date
    Apr 2006
    Location
    Warwickshire, UK
    Posts
    4,564

    Default Re: Email does not contain info submitted

    I noticed you have a message on your form saying 'currently not working' I don't think this is true.

    I get this sometimes on my forms. All that is happening is when someone lands on your action.php page WITHOUT going through your contact form page first, it sends out a message to send you an email, hence you receive nothing on it. If I remember correctly this could be even the SE's robot's hitting this page. I think George (Naval) will come along soon and tell you the exact problem, but I am certain that no one is sending you an email through your form and you are not receiving it, so I would remove your 'not working' sign.

    Not sure if there is a fix for this, but if there is I will keep an eye on this thread as I get these all the time.
    Don't aim for success if you want it; just do what you love and believe in, and it will come naturally.

  7. #7
    Vasili's Avatar
    Vasili is online now Moderator
    Join Date
    Mar 2006
    Posts
    13,611

    Default Re: Email does not contain info submitted

    So much "discussion"! LOL

    Please post the "action" script for your email form so we can have a look at it.

  8. #8
    carlap is offline Private First Class
    Join Date
    Mar 2008
    Posts
    5

    Default Re: Email does not contain info submitted

    I filled out the form myself to test it and that is when I received the email without any of the info that I put in it.

  9. #9
    carlap is offline Private First Class
    Join Date
    Mar 2008
    Posts
    5

    Default Re: Email does not contain info submitted

    <?PHP $mailto = "abcgiftboutique********.com"; $email = $HTTP_POST_VARS['email']; if ($email == "") { $email = $mailto; } $mailsubj = "ORDER"; $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); ?>

  10. #10
    Marincky's Avatar
    Marincky is offline General
    Join Date
    Apr 2006
    Location
    Warwickshire, UK
    Posts
    4,564

    Default Re: Email does not contain info submitted

    Quote Originally Posted by carlap View Post
    I filled out the form myself to test it and that is when I received the email without any of the info that I put in it.
    I have just emailed you through your form, tell me if you receive it.
    Don't aim for success if you want it; just do what you love and believe in, and it will come naturally.

  11. #11
    Vasili's Avatar
    Vasili is online now Moderator
    Join Date
    Mar 2006
    Posts
    13,611

    Arrow Re: Email does not contain info submitted

    Your email "element" fields are improperly labelled: review the instructions in particular here, and here once again.

    Possible problems:
    1. There is no FORM formatting "grid" under your "fields"
    2. You have not filled out the Name, Email, etc. attribute boxes in Properties of each properly. (especially the email box)
    3. Your FORM formatting "grid" is not fully under the fields ........

    Do the due diligence of double-checking your work and trouble-shooting by reviewing the instructions carefully.

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

    Default Re: Email does not contain info submitted

    Or, to better clarify some of the things Vasili is saying, you have used BlueVoda to create the form, then you have copy / pasted it somewhere in order to be able to publish on a non VH account. Pasting it there has changed some of it's attributes.

    There is no problem helping non VH customers, BUT there IS a problem when you use BV to create a site for a non VH account.

    If i am wrong, please let me know. I apologise in advance.
    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!


  13. #13
    Vasili's Avatar
    Vasili is online now Moderator
    Join Date
    Mar 2006
    Posts
    13,611

    Thumbs up Blue Voda Is Exclusive To VodaHost !

    Quote Originally Posted by navaldesign View Post
    There is no problem helping non VH customers, BUT there IS a problem when you use BV to create a site for a non VH account..

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