ListMailPRO Email Marketing Software Forums

ListMailPRO Email Marketing Software Forums => General Help & How-To => Topic started by: dermot on May 30, 2006, 03:13:33 am

Title: Welcome Email - Nots sending
Post by: dermot on May 30, 2006, 03:13:33 am
Listmail is installed and working fine but unfortunatly the welcome emails dont send and if i enable double confirmation it doesnt send that email either.

Any ideas???

Sending emails work as does scheduling (although this is a windows based system and we are using wget).

Kyle
Title: Welcome Email - Nots sending
Post by: DW on May 30, 2006, 08:09:25 am
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:
Code: [Select]
<?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