I haven't been coding for a while, and as such, I've forgotten quite a bit. Today, I tried to write a mail() function for my company's website. It seems to be working fine when I test it on my own box, but every time I try it, I get an error message that has something to do with php.ini. Is this a result of me not having a mail server, or is something wrong with my code???
$message = "$name<p>$email<p>$msg";
$message_cus = "Thank you for your input. You should receive a
response within 72 hours.<p>Regards,<br>Hill Technologies";
mail("blah@blah.com","Website Inquiry",$message);/*Insert Applicable Email*/
mail($email,"Hill Technologies",$message_cus);