Code: Select all
// Send with BCC, no more than 50 recipients for one mail (to not exceed the limit)
$max_chunk_size = 50;
If they both are not same.. then can you give an explanation as to what each thing does.. and whats the difference? Please..Acyd Burn wrote:No, this is the package size (number of emails sent in one go) and has nothing to do with a recipient limit. You need to change the code if you want to adjust the recipient limit.
I use Googlemail and I think it has a 200 email limit in 24 hours too. I'm curious to know if and how to address this too.blackwatch_uk wrote:Yahoo Small Business only let me send 200 emails in 24 hrs. So is there a way when sending a mass email to send a chunk of 50 emails in a 24hr period?
googlemail's send limit is 500 mails on a single day.. it's also same on google apps standard edition! for google apps premier edition and education edition, the limit is 1500 mails higher; it totally makes 2000, and imo it's sufficient for a board that has 500 members..tim_welch wrote:I use Googlemail and I think it has a 200 email limit in 24 hours too. I'm curious to know if and how to address this too.blackwatch_uk wrote:Yahoo Small Business only let me send 200 emails in 24 hrs. So is there a way when sending a mass email to send a chunk of 50 emails in a 24hr period?
(I used to be able to send a mass email to all my users but now my registered member count has exceeded 500, it causes me some errors and don't send emails all in one go to all my users and I wonder if it's due to this limit, rather than anything else).
I do this too now... I have several forums, the largest with around 1,500 members and whilst this process works, it's not the most effective use of my time.Hittman wrote:So I extracted the e-mail addresses from the users table and did it manually, in chunks of about 50. Half went through gMail, the other through the smtp server (which is on roadrunner, not my host).
Code: Select all
SELECT `user_email` FROM phpbb_users;
stevemaury wrote:You can do this SQL:And then export the query results as CSV and then import it into a email client like Outlook Express and send mass emails through your ISP's SMTP server.Code: Select all
SELECT `user_email` FROM phpbb_users;
Code: Select all
SELECT user_email FROM `phpbb_users` WHERE user_allow_massemail = 1