Hi, I hope someone can help me quickly. What is the correct way to include multiple BCC e-mail addresses (it's not for spam) -
Code PHP:$headers .= "Bcc: $email_address, [email]another@email.com[/email]" . "\r\n";
using a comma "," or
Code PHP:$headers .= "Bcc: $email_address; [email]another@email.com[/email]" . "\r\n";
a semicolon ";" or
Code PHP:$headers .= "Bcc: $email_address" . "\r\n"; $headers .= "Bcc: [email]another@email.com[/email]" . "\r\n";
writing out two headers?
I just don't seem to get it to work... eeeek![]()





Bookmarks