Hurans
Hurans

Reputation: 803

How many emails is recommended to use in BCC with php mail() function?

I am using php mail() function to send a newsletter (this function works well for me because right now I only send a few k emails a week), I am currently looping mail() function foreach email i need to send, but I was thinking about using BCCs to send more emails on each loop so it will take less time to process, whats the recommended amount of emails I should use for BCCs in php's mail() function?

Note: I am working on a implementation of phpmailer class but that will be for next months because I want to do a good script with that, right now mail() function is enough for me.

Upvotes: 2

Views: 850

Answers (2)

Steve-o
Steve-o

Reputation: 12866

As per RageZ's comment, the limit is imposed by the SMTP relay or local spool. For Postfix this is default set to 50 recipients per message, Sendmail & Exim are unlimited, Microsoft Exchange 2003 defaults to 5000.

Postfix:

Sendmail:

Exim:

For comparison purposes, Microsoft Exchange:

Upvotes: 1

Dan Grossman
Dan Grossman

Reputation: 52372

You should know that you'll never have as good deliverability from your own server compared to using an email marketing service. Even if you were to become a domain expert in e-mail systems and configured your servers identically to theirs, they'd still deliver mail where yours end up in junk folders or rejected.

Check out

http://sendgrid.com/

http://postmarkapp.com/

Upvotes: 1

Related Questions