Results 1 to 6 of 6

Thread: Email Form Set-up? I'm not receiving any emails?
      
   

  1. #1
    jiwanejko is offline Corporal
    Join Date
    Jun 2007
    Posts
    19

    Cool Email Form Set-up? I'm not receiving any emails?

    I just went through the video tutorial on setting up a standard email response form. I gave it test run, trying to send myself a message, and have not received it. The thank you page worked. I checked my web mail, as well as, my yahoo email and nothing. I must be missing something in the php code or something in the web mail. I really didn't understand all the stuff in starting the web mail pages. I did set up redirect to my yahoo, but like I said.. nothing yet. Any advice on where to go from here.

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

    Default Re: Email Form Set-up? I'm not receiving any emails?

    Like to help but need a couple things:
    1- post the url of your form
    2- copy and paste the php code that you used as it is on your site right now. Post it in this thread.

    Andy
    PHP- is a blast!

  3. #3
    jiwanejko is offline Corporal
    Join Date
    Jun 2007
    Posts
    19

    Default Re: Email Form Set-up? I'm not receiving any emails?

    Here's the script:

    <?PHP
    $mailto = "contact@1stclassgreetingcards.com";
    $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);
    ?>

    The url of the "contact" link on the index page is http://www.1stclassgreetingcards.com/contact.html.. If this is what you are referring to?

    Thanks.

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

    Default Re: Email Form Set-up? I'm not receiving any emails?

    Well- the form and the php code look good. Try changing the email address that it sends the info to from contact@1stclassgreetingcards.com to your yahoo email address.

    I really didn't understand all the stuff in starting the web mail pages.
    There maybe something you did wrong in setting up the "contact" email account.

    Andy
    PHP- is a blast!

  5. #5
    jiwanejko is offline Corporal
    Join Date
    Jun 2007
    Posts
    19

    Default Re: Email Form Set-up? I'm not receiving any emails?

    where and how do i do this?

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

    Default Re: Email Form Set-up? I'm not receiving any emails?

    In the php code where you put your email.

    PHP Code:
    $mailto "contact@1stclassgreetingcards.com"
    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