Hello somdara,
How are you attempting to send your message out currently?
Are you trying to
send a test message in phpList?
I believe it's going to send out 2 emails, one in text, and one in HTML while testing. When you're actually delivering out to a mailing list, it should only be sending the one that your subscriber has choosen.
If you pop open your phpList
config.php file, you should see this section you can edit to disable this test message behavior:
- Code: Select all
# test emails
# if you send a test email, phplist will by default send you two emails, one in HTML format
# and the other in Text format. If you set this to 1, you can override this behaviour
# and only have a test email sent to you that matches the user record of the user that the
# test emails are sent to
define('SEND_ONE_TESTMAIL',0);
So you'd end up just changing that to:
- Code: Select all
define('SEND_ONE_TESTMAIL',1);
If you only wanted the 1 test email sent out instead of 2. If you weren't having this issue while sending a test message, and instead had it happen when sending to a normal mailing list, I would recommend ensuring that the subscriber's email address isn't accidentally added to the list more than once.
Let me know if that helped at all.
- Jacob