PHP LISTのテストモードを解除する方法
ログインして上部に
「Running in testmode, no emails will be sent. Check your config file」
と出てくると、テストモードが解除されていない。
このテストモードを解除するには、
/lists/config/config.php
の193行目あたり
# if test is true (not 0) it will not actually send ANY messages, # but display what it would have sent define ("TEST",0);
の
define ("TEST",1);
を
define ("TEST",0);
とする。