how to hide email recipient list
I want to use PHP mail() function to send email to hundreds of users, in mail function I can set mail list like:
$sendto="user1@abcd.com,user2@xyz.com,user3@yahoo.com,.....";
But in this way when user receives this email, he can see all the email recipients at the top, I want to hide this info, is it possible to use:
$sendto="To Users";
Thanks for any comment.
michael123
Junior Poster in Training
94 posts since Jun 2005
Reputation Points: 10
Solved Threads: 0
Doing it this way is also more efficient for the server because as your mailing list grows, you can do batch jobs of XXX at a time to lessen server load. It also allows you to customize each email to each user, by using php variables within the mail messages. Makes it seem a lot more personal and you will probably get a better response rate.
cscgal
The Queen of DaniWeb
19,437 posts since Feb 2002
Reputation Points: 1,474
Solved Threads: 231