hi, i am attempting to get php mail() function to work, it is not.
i am not getting any error messages in the log file.
here is my php.ini:
http://81.129.49.40/php.ini
phpinfo:
http://81.129.49.40/phpinfo.php
and here is my program:
it is supposed to send the $name variable to my email address.
however, i am not recieving anything, i have looked in the spam folder, and have tried other emails.
please help.
i am not getting any error messages in the log file.
here is my php.ini:
http://81.129.49.40/php.ini
phpinfo:
http://81.129.49.40/phpinfo.php
and here is my program:
PHP:
$name = $_GET['name'];
mail('[email protected]', 'Subscription', $name);
however, i am not recieving anything, i have looked in the spam folder, and have tried other emails.
please help.