Jump to content

$reply not working. Need help


codieB

Recommended Posts

Try this then replace this

 

 

 $Name = "name"; //senders name
   $email = "[email protected]"; //senders e-mail adress
   $recipient = $_REQUEST['email']; //recipient
   $reply = "Congratulations! Video access for " .$_POST['fname']." ".$_POST['lname']."";

 

with this

 

 
$fname = $_POST['fname'];
$lname = $_POST['lname'];

$Name = "name"; //senders name
   $email = "[email protected]"; //senders e-mail adress
   $recipient = $_REQUEST['email']; //recipient
   $reply = "Congratulations! Video access for $fname $lname ";

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.