Results 1 to 4 of 4

Thread: About to give up...
      
   

  1. #1
    sgcrazy is offline Corporal
    Join Date
    Apr 2008
    Posts
    17

    Default About to give up...

    I,m about to give up on this BV. My website depends on my request information form working, but it does not. Followed tutorials to the letter and read 4 times. everything seems to work fine, but when I click "submit" and get the thank you page, I never get an email. I am using my email on the BV server, no, it is not in the "junk" email folder and yes, I believe the HTML is correct. Here it is. Cannot seem to get a straight answer from submitting a ticket:

    <?PHP
    $mailto = "sales@bulktvforbusiness.com";
    $email = $HTTP_POST_VARS['email'];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "quote request";
    $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);
    ?>

    Thanks in advance for any help. I am getting frustrated, seems like Yahoo site builder was much easier to use.

    www.bulktvforbusiness.com

  2. #2
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,353

    Default Re: About to give up...

    Do you have an autoresponder set up?

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  3. #3
    sgcrazy is offline Corporal
    Join Date
    Apr 2008
    Posts
    17

    Default Re: About to give up...

    No

  4. #4
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,353

    Default Re: About to give up...

    You need the autoresponder set up to autogenerate email, and copy yourself too.. Or at least I believe so. I have them set up on all my accounts that do mail, so Im not positive this is an issue, but it might be.. try it and see.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



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