I have been trying to make a simple php mail script, but it won't work! Here is the source below...why wont this work?
<?php
mail("tucker401@mailbolt.com", "This is the message subject", "This is the message body");
echo "message has been sent.";
?>
-tucker-