Forum Moderators: coopster
I have already tried a couple of open source programs, and Lyris, none of which met my needs.
It's really pretty simple: the script reads the addresses one at a time from a database and sends out the same message to one and all using the PHP mail() function. It works quite well, according to my tests. However, I am wondering if there is a more efficient way of doing this, especially considering the list may double or triple in time.
Any ideas? Thank you in advance.
You can look also in the manual:
There was one solution with direct smtp, however I don't know what it is
Piece of info:
Parametersto
Receiver, or receivers of the mail.
The formatting of this string must comply with RFC 2822. Some examples are:
user@example.com
user@example.com, anotheruser@example.com
User <user@example.com>
User <user@example.com>, Another User <anotheruser@example.com>
hope this helps
Michal Cibor
Another easier solution would be to put the recipients in the bcc field, to avoid, that they can see each other.
However take care of another aspect. If you are using too fancy methods, your newsletter might trigger spam filters, as any "bulk-method" which is traceable will give a hint to the filter.