Results 1 to 3 of 3

Thread: Forms work but email doesn't send
      
   

  1. #1
    Kevin Dwyer's Avatar
    Kevin Dwyer is offline Sergeant
    Join Date
    May 2007
    Location
    Hua Hin, Thailand
    Posts
    35

    Red face Forms work but email doesn't send

    Hello anyone...
    I have set a contact form on my committee page. Everything seems to work fine but the email doesn't come to my test email address. I have set up my own hotmail address just as a test. My email is dwyer.1961********.com. This is the script that I added to the beginning of a body on my thank you page. Any help with this would be much appreciated. Thank You in advance. Do I have to do anything with the brgc.biz email ?

    Kevin
    www.brgc.biz

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

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

    Default Re: Forms work but email doesn't send

    Your script seems correct. Try changing your email address to something else, than dwyer.1961@...... and test it. Also check your spam/junk folder. Hotmail in many cases blocks emails.
    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
    Kevin Dwyer's Avatar
    Kevin Dwyer is offline Sergeant
    Join Date
    May 2007
    Location
    Hua Hin, Thailand
    Posts
    35

    Default Re: Forms work but email doesn't send

    Thanks again Naval...
    It sends to other email with no problems

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