Results 1 to 12 of 12

Thread: No info in emails
      
   

  1. #1
    AnnFitz is offline Private
    Join Date
    Nov 2006
    Posts
    1

    Default No info in emails

    Hi ppl,

    Can someone help out please, I have put a form on my site which seems to work fine in so that when you fill it in and hit submit it then brings up thank you page but when i check emails all i get is "Values submitted from web site form :" I can see where that is in the html but can't seem to figure out exactly what it is I should have in there.

    Thank you

    Ann Fitz

    http://www.crs-skipit.com/skipitservices.html

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

    Default Re: No info in emails

    You don't recieve anything because your form Encoding Type is set to text/plain. Set it to multipart / form data.

    However, your fields are unnamed: they have the default names "Editbox1", "Editbox2" etc. Edit them, name them correctly (Durayion, Quantity etc). Remember: the email address field MUST be named "email" all lowercase chrs.
    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!


  3. #3
    Persephone is offline Sergeant
    Join Date
    Dec 2007
    Posts
    20

    Default Re: No info in emails

    i am having the same problem! the encoding type is set to multipart / form data but still not workng.. Help!

  4. #4
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: No info in emails

    persephone-

    Please post your url so we can check it and also- copy paste your php script too.

    Andy
    PHP- is a blast!

  5. #5
    Persephone is offline Sergeant
    Join Date
    Dec 2007
    Posts
    20

    Default Re: No info in emails

    my url is http://pencilslayer.com/Commissions.html but what u mean php script ?!

  6. #6
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: No info in emails

    The script that you copied and pasted into the page html section. This is what processes the form and sends the e-mail.

    Andy
    PHP- is a blast!

  7. #7
    Persephone is offline Sergeant
    Join Date
    Dec 2007
    Posts
    20

    Default Re: No info in emails

    <?PHP
    $mailto = "pencilslayer@digital-artist.org";
    $email = $HTTP_POST_VARS['email'];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "Commission";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Commission Details :\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    if ($key!="submit")
    {
    $mailbody .= "$key : $val\n";
    }
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>

  8. #8
    Persephone is offline Sergeant
    Join Date
    Dec 2007
    Posts
    20

    Default Re: No info in emails

    this goes on my thank you page.. yes? i am able to recieve the email. but with no info...

  9. #9
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: No info in emails

    Change your text -Request- to a submit button. You can name the submit button -Request -.

    Andy
    PHP- is a blast!

  10. #10
    Persephone is offline Sergeant
    Join Date
    Dec 2007
    Posts
    20

    Default Re: No info in emails

    ok thanks ! problen reolved =P

  11. #11
    Persephone is offline Sergeant
    Join Date
    Dec 2007
    Posts
    20

    Default Re: No info in emails

    Can you help me with my guestbook... im unable to delete some messages !!!

  12. #12
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: No info in emails

    Love to- but I know next to nothing about Guestbooks. Sorry.

    I stopped messing with them as they were more trouble than fun.

    Talk to you later.

    Andy
    PHP- is a blast!

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