Hey guys, I have an problem with my php email script, I get an email as I wanted but I don't get "message content" in it at all, all there is only "name field" and "email field" but "text area" is empty, and then the page gives me a 500 Internal Server error somewhere in port 80, have no idea what it is? Does anybody know where can be a mistake, here is the original script that I use:
<?php
$to = '[email protected]';
$subject = 'Hi';
$emailaddress = $_POST['emailaddress'];
$username = $_POST['username'];
$message = $_POST['message'];
mail($to,$subject,$emailaddress,$username,$message );
Thank you!!!!
?>