I dont receive my emails

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • madnikdog
    Private

    • Feb 2006
    • 3

    I dont receive my emails

    When i fill in the form to try i dont receive the email with the information.
    My page is

    My php is

    My php text is
    HTML>
    <HEAD>
    <TITLE>Succesfully processed your Sign In</TITLE>
    </HEAD>
    <BODY>
    <H2>Thanks for Joining Maddog Racing</H2>

    <?PHP
    $email = $HTTP_POST_VARS[email];
    $mailto = "nik@maddogsimracing.com";
    $mailsubj = "Maddog Racing Sign Up";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from web site form:\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    $mailbody .= "$key : $val\n";
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>
    </BODY>
    </HTML>

    My properties on the form are
    Action : signup.php
    post
    empty box.

    My email works and it gets redirected to my AOL account ok
    Please help or no one will join my team LOL
    Cheers Nik
  • jabird60
    Sergeant First Class

    • Feb 2006
    • 57

    #2
    Re: I dont receive my emails

    did you do that script you self
    ???

    Comment

    • madnikdog
      Private

      • Feb 2006
      • 3

      #3
      Re: I dont receive my emails

      no the one you could download

      Comment

      • jabird60
        Sergeant First Class

        • Feb 2006
        • 57

        #4
        Re: I dont receive my emails

        Originally posted by madnikdog
        When i fill in the form to try i dont receive the email with the information.
        My page is

        My php is

        My php text is
        HTML>
        <HEAD>
        <TITLE>Succesfully processed your Sign In</TITLE>
        </HEAD>
        <BODY>
        <H2>Thanks for Joining Maddog Racing</H2>

        <?PHP
        $email = $HTTP_POST_VARS[email];
        $mailto = "nik@maddogsimracing.com";
        $mailsubj = "Maddog Racing Sign Up";
        $mailhead = "From: $email\n";
        reset ($HTTP_POST_VARS);
        $mailbody = "Values submitted from web site form:\n";
        while (list ($key, $val) = each ($HTTP_POST_VARS))
        {
        $mailbody .= "$key : $val\n";
        }
        mail($mailto, $mailsubj, $mailbody, $mailhead);
        ?>
        </BODY>
        </HTML>

        My properties on the form are
        Action : signup.php
        post
        empty box.(this should be multipart/form-data)

        My email works and it gets redirected to my AOL account ok
        Please help or no one will join my team LOL
        Cheers Nik
        you need to Correct the letters in red

        ok this is the script you need to use

        <HTML>
        <HEAD>
        <TITLE>Succesfully processed your Sign In</TITLE>
        </HEAD>
        <BODY>
        <H2>Thanks for Joining Maddog Racing<H2>

        <?PHP
        $email = $HTTP_POST_VARS[email];
        $mailto = "nik@maddogsimracing.com";
        $mailsubj = "Maddog Racing Sign Up";
        $mailhead = "From: $email\Maddog Racing Sign Up";
        reset ($HTTP_POST_VARS);
        $mailbody = "Values submitted from web site form:\n";
        while (list ($key, $val) = each ($HTTP_POST_VARS))
        {
        $mailbody .= "$key : $val\n";
        }
        mail($mailto, $mailsubj, $mailbody, $mailhead);
        ?>
        </BODY>
        </HTML>

        just copy it in to notepad and up load it to you website

        Comment

        • madnikdog
          Private

          • Feb 2006
          • 3

          #5
          Re: I dont receive my emails

          Cheers Mate
          Works great thanks.

          Comment

          • jabird60
            Sergeant First Class

            • Feb 2006
            • 57

            #6
            Re: I dont receive my emails

            are you using neo maill or horde or squirl mail??

            Comment

            Working...
            X