Welcome, confirmation and some notification emails are sent with PHP mail(). Please ensure that the PHP mail() function is available and working on your server. A test script you copy and paste into and upload as a .php file is as follows:
<?php// config$domain = "domain.com";$toaddr = "test@otherdomain.com";// end config$fromaddr = "mytest@$domain";$returnpath = "bounceme@$domain";// codeecho date("l, F jS g:ia T");echo "<br>testing mail() function..<br>sending mail.. ";if(mail($toaddr,'mailtest','mailtest',"From: \"Mytest\" <$fromaddr>\nReturn-path: <$returnpath>")) echo "mail seems to be sent ok - was it received?<br>"; else "mail NOT sent ok!?<br>";?>
Set domain.com to your ListMail domain and otherdomain.com to a remote address not on the domain.com server.
Please let me know if I can be of further assistance!
Regards