Results 1 to 7 of 7

Thread: Basic Form Problem
      
   

  1. #1
    PompeyJim is offline Private
    Join Date
    Oct 2006
    Posts
    3

    Default Basic Form Problem

    All I am trying to do is set up a basic form, to register to a mailing list.

    I have Name, e-mail fields only to enter. I have created this in a basic form, a selected Action: action.php, Method: post, and Mulipart/form data

    The thank you screen is named just action.php, and file extention is set to .php

    This is the HTML code I have pasted into inside body tag:

    <?PHP
    $email = $HTTP_POST_VARS[email];
    $mailto = "realpartremoved********.co.uk";
    $mailsubj = "Register";
    $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);
    ?>

    Have I messed something up along the line somewhere? and will it even work with hotmail?

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

    Default Re: Basic Form Problem

    What problem excactly do you have ? The script will work with any email address.
    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
    PompeyJim is offline Private
    Join Date
    Oct 2006
    Posts
    3

    Default Re: Basic Form Problem

    Ah yes I forgot to add the problem, the form seems to process, goes to action.php page, but no mail arrives.

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

    Default Re: Basic Form Problem

    Please check your spam folder. I have been using hotmail addresses with no problem. Just mailed you, please confirm that you are receiving mails ok.
    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!


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

    Default Re: Basic Form Problem

    This is what i got when i mailed you:

    - These recipients of your message have been processed by the mail server:
    realpartremoved********.co.uk; Failed; 5.1.1 (bad destination mailbox address)

    Remote MTA mx2.hotmail.com: SMTP diagnostic: 550 Requested action not taken: mailbox unavailable


    Seems that there is something wrong with your email address.
    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!


  6. #6
    PompeyJim is offline Private
    Join Date
    Oct 2006
    Posts
    3

    Default Re: Basic Form Problem

    No that's not the real mail address, I didnt want spam getting hold of it.

    real is pro-punters(at)hotmail.co.uk

    I still haven't fixed it, seems to send ok just dosnt appear in my mail.

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

    Default Re: Basic Form Problem

    Try it with an alternative email address. Or use Advanced BlueVoda Form Processor
    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