0

Why does the function imap_rfc822_parse_headers not contain BCC information? How do I get this information?

somejkuser
  • 8,856
  • 20
  • 64
  • 130
  • Because it's intended to be used on received mail that obviously will never contain the *B*CC (b for blind) header? – fvu Apr 12 '13 at 22:27
  • Probably because you don't have the source containing the `Bcc:` field. This function just parses an input string. The received mail does never contain the blind carbon copy addresses. It cannot magically uncover lost data. – mario Apr 12 '13 at 22:28
  • That's what I thought. Thanks – somejkuser Apr 12 '13 at 22:29

1 Answers1

2

BCC is not the part of mail mime header.. thats what it is supposed to be. blind carbon copy..

More reference at: http://en.wikipedia.org/wiki/Blind_carbon_copy

Anshul
  • 1,416
  • 1
  • 16
  • 42