Are you able to use PHP mail with the following test script to email a remote address?
1. Modify the $to var to a remote email address and the $fromdomain var to your ListMail domain.
2. Copy and paste to a new.php file
3. Upload to your site and Browse to it
<?php// PHP mail() test script$to = 'remote@hotmail.com';$fromdomain = 'example.com';if(mail($to,'test','test',"Return-path: anything@fromdomain\nFrom: \"Test Test\" <anything@$fromdomain>\n")){ echo "Success - message sent!. Was it received?<br>";} else { echo "Failed! Message could not be sent?!<br>";}?>
If the message is not received there could be a problem with the server's PHP configuration.
Regards
I noticed a bug in the test code which might have caused a problem. I've also added an additional test:
<?php// PHP mail() test script$to = 'remote@hotmail.com';$fromdomain = 'example.com';if(mail($to,'test1','test1',"Return-path: anything@$fromdomain\nFrom: \"Test Test\" <anything@$fromdomain>\n") && mail($to,'test2','test2',"Return-path: anything@$fromdomain\nFrom: \"Test Test\" <anything@$fromdomain>\n","-fanything@$fromdomain")){ echo "Success - 2 test messages sent!. Were they received?<br>";} else { echo "Failed! Message could not be sent?!<br>";}
Note: Set $to (remote@hotmail.com) to a remote address you can check mail at. Set the $fromdomain (example.com) to your ListMail domain.
If you do not receive the test messages you can point your host to the test script to see if they can get it to work.
Regards