iamalex
11-05-2006, 08:26 PM
Please help. Below works, but that is only with message.
How do I add name, address, city so they work and are included in email.
New to php and everything I try does not get work.
Thanks
< ?
$email = $_GET['email'] ;
$message = $_GET['message'] ;
mail( "yourname@example.com", "Email Subject", $message, "From: $email" );
print "Congratulations your email has been sent";
?>
How do I add name, address, city so they work and are included in email.
New to php and everything I try does not get work.
Thanks
< ?
$email = $_GET['email'] ;
$message = $_GET['message'] ;
mail( "yourname@example.com", "Email Subject", $message, "From: $email" );
print "Congratulations your email has been sent";
?>