Hi there
I have a form with 10 fields. I tried to send the info throught the sendmail.php
I got an error message saying that its only allowed to send 5 fields which are : name, email, message, sender and some header.
The code bellow works fine :
$name = $REQUEST['name'] ;
$email = $REQUEST['email'] ;
$topic = $REQUEST['topic'] ;
$message = $REQUEST['message'] ;
mail( "email@server.com.", $topic, "Message: $message" , "From: $email");
The problem is that I have more than 5 fields. I have 4 more selection fields. My question is : How can I send more than 5 fields? The fields I have in my form are:
Company, Name, Phone, email, message
And some selection fields such as :
I have a PC
I have a TV
I Have a car
I dont have any of the above.
Thanks.