Announcement

Collapse
No announcement yet.

I dont receive my emails

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

  • I dont receive my emails

    When i fill in the form to try i dont receive the email with the information.
    My page is
    http://www.maddogsimracing.com/signup.html
    My php is
    http://www.maddogsimracing.com/signup.php
    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

  • #2
    Re: I dont receive my emails

    did you do that script you self
    ???

    Comment


    • #3
      Re: I dont receive my emails

      no the one you could download

      Comment


      • #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
        http://www.maddogsimracing.com/signup.html
        My php is
        http://www.maddogsimracing.com/signup.php
        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


        • #5
          Re: I dont receive my emails

          Cheers Mate
          Works great thanks.

          Comment


          • #6
            Re: I dont receive my emails

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

            Comment

            Working...
            X