Results 1 to 8 of 8

Thread: Not receiving emails
      
   

  1. #1
    skate is offline Private First Class
    Join Date
    Feb 2008
    Posts
    5

    Question Not receiving emails

    Client ID: 21482

    Hi, this is my first website and i'm wrestling with my contact form. It all seems to work but I don't receive any emails. I originally wanted them to be sent to an outside email address, which is what I put into the HTML, but when I received nothing I went over everything suggested in other threads, and couldn't find a problem. So I changed the email in the action.php page HTML to my domain email, and then set up a forward to the account I want to use. Still nothing!

    my form is at www.fishingtripsafrica.com/contactform.html

    the thankyou page is at www.fishingtripsafrica.com/action.php

    Please let me know what I'm not seeing! I can't find what im doing wrong.

    Thanks very much.

    Kate

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

    Default Re: Not receiving emails

    Well, you form seems ok so you should post here the script used in your action page, to check
    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
    IndianaJim is offline Private First Class
    Join Date
    Feb 2008
    Posts
    6

    Default Re: Not receiving emails

    I'm having the same problem... gmail, domain email... nothing. Here's my php script.

    <?PHP
    $mailto = "info@indianajim.net";
    $email = $HTTP_POST_VARS['email'];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "Contact Form Submission";
    $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);
    ?>

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

    Default Re: Not receiving emails

    Your script seems ok. Please verify that your email account is working ok, and that the emails do not end on your spam folder. Check (with your domain name in the script) id the emails arrive inyour web mail.
    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
    IndianaJim is offline Private First Class
    Join Date
    Feb 2008
    Posts
    6

    Default Re: Not receiving emails

    Yeah, the emails check out okay. The first thought I had before I posted here was to check spam, and no such luck. It seems to be an issue a lot of people have had on this messageboard.... ?

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

    Default Re: Not receiving emails

    I would suggest that you delete the php script from the page and then re-copy and paste back into the html box (Inside Body tag). save and publish.

    Sometimes it's the little things that work.

    Andy

    IndianaJim-
    Was your's working and then quit, or is this a new build like Skate because I do not see it anywhere on your site?

    Andy
    PHP- is a blast!

  7. #7
    dannlin is offline Sergeant
    Join Date
    Feb 2008
    Location
    Godstone, Surrey, England
    Posts
    32

    Default Re: Not receiving emails

    I have pasted some script into my index.html file and I can't find how to delete it. I go into html in builder and open thml by right ckicking page html.

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

    Default Re: Not receiving emails

    dannlin

    Yes. Then click on each of the tabs to see where you put it. Unless you put it in an html box. Then simply delete it off the page.

    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