I have a PHP function to email subscriptions to users. I use the BCC so the users cannot see each other, and everything works great, with one exception: I worry about having too many emails per line such that the header line is too long.

Note: I do break up the lists so that at most 75 emails addresses are used per email, but I don't want to go lower than that because of overhead.

I have tried several ways to fold or wrap the line, but no matter what I do, any addresses after the first fold are ignored. What is the proper way to do this?

I am interested in this for TO and CC fields as well.

link|improve this question

How have you tried so far? – ibid Jan 22 at 21:30
I bet most poeple here will tell you to use a class/framework instead of trying to do it yourself: PHP Mailer or PHP SwiftMailer – Shackrock Jan 22 at 21:31
I have tried many combinations of commas, CRLF, tabs, spaces – steveo225 Jan 22 at 21:31
@Shackrock: That teaches me nothing, plus then I have to find, integrate, test somebody else's framework, when mine already works (which it does, I am just trying to fold lines properly to avoid potential future problems) – steveo225 Jan 22 at 21:34
@steveo225 Teaches you? I'm saying, these frameworks are made to send email, and lots of it. By using those frameworks instead of trying to BCC 75 people with the mail() function, you can send everyone an individual email - properly, and looking LESS like spam to email clients. Just my 2 cents... take it or leave it. – Shackrock Jan 22 at 21:38
show 1 more comment
feedback

1 Answer

I strongly suggest you use a ready-made email library or framework (I have experience with Zend_Mail which you can use without the rest of ZF). In any case when you fold email header lines you need to ensure that all lines after the 1st line begin with at least one space character, like so:

Bcc: foo1@example.com, foo2@example.com, ...
  foo3@example.com, ...

Make sure you use CRLF for line breaks and not just LF ("\r\n" rather than "\n").

See http://tools.ietf.org/html/rfc2822#section-2.2.3 for more info.

link|improve this answer
Yeah, I found that document. Doesn't seem to work as expected. Perhaps there is an issue with the version of sendmail I am using. – steveo225 Jan 23 at 0:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.