Sending BCC to multiple recipients

Hi,

I’m trying to Bcc internal people one emails that are sent out to clients, but can’t seem to find a way for action mailer to send it to multiple people. Is this an unimplemented feature?

Thanks

Amy

you can pass an array:

@bcc = [first_person, second_person]

ed

What have you tried? You should be able to pass in an array of addresses (and possibly a comma separated list?)

James.

I tried: @bcc = [“email1”, “email2”, “email3”], but it never seems to send anything to email1 and email2, just email3.