Ichpuchtli
08-06-06, 02:39 AM
Well the thing is I can only get the message to send.
<?
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
$name = $_REQUEST['name'] ;
$name2 = $_REQUEST['name2'] ;
mail( "andy@ichpuchtli.com", "Form Thing.",
$message, $name, $name2, "From: $email" );
header( "Location: http://www.ichpuchtli.com/forms/thankyou.html" );
?>
Well the only things that work is it sends me an email saying "Form Thing" As the subject, the email adress is also in the right place it says it is from that person. All things in Red are working I need it to send the name, and name2.
Thanks Andrew
<?
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
$name = $_REQUEST['name'] ;
$name2 = $_REQUEST['name2'] ;
mail( "andy@ichpuchtli.com", "Form Thing.",
$message, $name, $name2, "From: $email" );
header( "Location: http://www.ichpuchtli.com/forms/thankyou.html" );
?>
Well the only things that work is it sends me an email saying "Form Thing" As the subject, the email adress is also in the right place it says it is from that person. All things in Red are working I need it to send the name, and name2.
Thanks Andrew