I have always had a problem with sendmail scripts, I have played with a few different ones and the most common problem I have encountered was most php sendmail scripts only allows you to have 5 parameters. Why is this and how can we overcome this. I know it's possible, where can I find a solution?
Also this is one I'm trying to use now and its not working at all, doesn't even send a message to my email address:
<?php
mail("webmaster@jsweb-design.com", "$fname", "$lname", "$email", "$phone", "$question");
echo "Thank You. Your message has been sent. We will reply to it as soon as possible"
?>
Appreciate any help.
