Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End php autoresponder problem

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #26191
    angela1
    Participant

    Hi,
    I’m creating my first php mail script from a form I created, and so far so good. I am able to get the form results emailed to me, but I can’t make it send a response to the form submitter. Do I have it setup wrong? The first mail line (form submit) is working, just the second one (autorespond) is not…?! Any help is greatly appreciated!
    Here’s my code: (links are just example links)

    Code:
    #64528
    Makeshift
    Member

    I don’t thin that the $email should be in quotations.

    Code:
    mail( $email, “Order Confirmation”, $reply, “From: MySite” );

    Try this.

    #64567
    Argeaux
    Participant

    Also this looks weird:

    Code:
    $_REQUEST [’email’];

    maybe you need to remove the spaces in the request like this:

    Code:
    $_REQUEST[’email’];
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Back End’ is closed to new topics and replies.