jnerotrix Posted December 10, 2008 Share Posted December 10, 2008 Try this then replace this $Name = "name"; //senders name $email = "name@name.com"; //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 = "name@name.com"; //senders e-mail adress $recipient = $_REQUEST['email']; //recipient $reply = "Congratulations! Video access for $fname $lname "; Quote Link to comment Share on other sites More sharing options...
codieB Posted December 10, 2008 Author Share Posted December 10, 2008 No errors, but no luck either. I'm getting the same results I got when I started. Everything comes in just find except the greeting. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.